Skip to content

Commit d4f7a19

Browse files
kamronbatmanhalter73
authored andcommitted
[Low Risk Cleanup] Removes double semicolons (#16794)
1 parent 4119513 commit d4f7a19

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

src/Components/test/E2ETest/Tests/FormsTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ protected virtual IWebElement MountTypicalValidationComponent()
4242
[Fact]
4343
public async Task EditFormWorksWithDataAnnotationsValidator()
4444
{
45-
var appElement = MountSimpleValidationComponent();;
45+
var appElement = MountSimpleValidationComponent();
4646
var form = appElement.FindElement(By.TagName("form"));
4747
var userNameInput = appElement.FindElement(By.ClassName("user-name")).FindElement(By.TagName("input"));
4848
var acceptsTermsInput = appElement.FindElement(By.ClassName("accepts-terms")).FindElement(By.TagName("input"));

src/Servers/IIS/IntegrationTesting.IIS/src/IISDeployer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ private void ConfigureAppHostConfig(XElement config, string contentRoot, int por
334334

335335
if (DeploymentParameters.RuntimeArchitecture == RuntimeArchitecture.x86)
336336
{
337-
pool.SetAttributeValue("enable32BitAppOnWin64", "true");;
337+
pool.SetAttributeValue("enable32BitAppOnWin64", "true");
338338
}
339339

340340
RunServerConfigActions(config, contentRoot);

src/Servers/Kestrel/Core/test/TimeoutControlTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ public void ReadTimingNotEnforcedWhenLowConnectionInputFlowControlAvailability()
328328

329329
// Read 0 bytes in 1 second
330330
now += TimeSpan.FromSeconds(1);
331-
_timeoutControl.Tick(now);;
331+
_timeoutControl.Tick(now);
332332

333333
// Timed out
334334
_mockTimeoutHandler.Verify(h => h.OnTimeout(TimeoutReason.ReadDataRate), Times.Once);

src/Servers/Kestrel/Transport.Libuv/test/LibuvOutputConsumerTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ await Task.Run(async () =>
606606

607607
Assert.True(task3Success.IsCompleted);
608608
Assert.False(task3Success.IsCanceled);
609-
Assert.False(task3Success.IsFaulted);;
609+
Assert.False(task3Success.IsFaulted);
610610
}
611611
});
612612
}

src/Servers/Kestrel/stress/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ void ValidateContent(string expectedContent, string actualContent)
237237
using (HttpResponseMessage m = await ctx.HttpClient.SendAsync(req))
238238
{
239239
ValidateResponse(m, httpVersion);
240-
ValidateContent(content, await m.Content.ReadAsStringAsync());;
240+
ValidateContent(content, await m.Content.ReadAsStringAsync());
241241
}
242242
}),
243243

src/Shared/Buffers.MemoryPool/MemoryPoolSlab.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ protected void Dispose(bool disposing)
5858
_isDisposed = true;
5959

6060
Array = null;
61-
NativePointer = IntPtr.Zero;;
61+
NativePointer = IntPtr.Zero;
6262

6363
if (_gcHandle.IsAllocated)
6464
{

src/SignalR/common/SignalR.Common/test/Internal/Formatters/BinaryMessageParserTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public void BinaryMessageParserThrowsForMessagesOver2GB(byte[] payload)
6767
{
6868
var ex = Assert.Throws<FormatException>(() =>
6969
{
70-
var buffer = new ReadOnlySequence<byte>(payload);;
70+
var buffer = new ReadOnlySequence<byte>(payload);
7171
BinaryMessageParser.TryParseMessage(ref buffer, out var message);
7272
});
7373
Assert.Equal("Messages over 2GB in size are not supported.", ex.Message);

0 commit comments

Comments
 (0)