Skip to content

Commit

Permalink
Whitespace cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
pepone committed Jan 31, 2024
1 parent f460e6a commit c35b3cc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions csharp/src/Ice/LocatorInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -196,15 +196,15 @@ override protected void
try
{
var locator = _locatorInfo.getLocator();
var proxy = await locator.findObjectByIdAsync(_ref.getIdentity()).ConfigureAwait(false);
var proxy = await locator.findObjectByIdAsync(_ref.getIdentity()).ConfigureAwait(false);
response(proxy);
}
catch (Ice.Exception ex)
{
exception(ex);
}
});

}
}

Expand Down
2 changes: 1 addition & 1 deletion csharp/test/Ice/ami/AllTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ public static async Task allTestsAsync(global::Test.TestHelper helper, bool coll
{
sentSynchronously = false;
t = p.opWithPayloadAsync(
seq,
seq,
progress: new Progress<bool>(value => sentSynchronously = value));
tasks.Add(t);
}
Expand Down
1 change: 0 additions & 1 deletion csharp/test/Ice/background/AllTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -925,7 +925,6 @@ private static async Task readWriteTests(
var t1 = background.opAsync(progress: p1);
test(!p1.SentSynchronously && !tcs1.Task.IsCompleted);


var tcs2 = new TaskCompletionSource();
var p2 = new Progress(value => tcs2.SetResult());
var t2 = background.opAsync(progress: p2);
Expand Down
2 changes: 1 addition & 1 deletion csharp/test/Ice/operations/OnewaysAMI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ internal static async Task onewaysAMI(Test.MyClassPrx proxy)
await p.opVoidAsync();
await p.opIdempotentAsync();
await p.opNonmutatingAsync();

try
{
_ = p.opByteAsync(0xff, 0x0f);
Expand Down
2 changes: 1 addition & 1 deletion csharp/test/Ice/retry/AllTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public class AllTests : global::Test.AllTests
{
}
catch (UnknownLocalException)
{
{
}

Instrumentation.testInvocationCount(1);
Expand Down
2 changes: 1 addition & 1 deletion csharp/test/TestCommon/TestHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ static TestHelper()
}

public virtual void run(string[] args)
{
{
}

public virtual Task runAsync(string[] args)
Expand Down

0 comments on commit c35b3cc

Please sign in to comment.