Fix StyleCop warning SA1006 (empty statements)
authorStephen Toub <stoub@microsoft.com>
Tue, 20 Aug 2019 16:22:38 +0000 (12:22 -0400)
committerStephen Toub <stoub@microsoft.com>
Thu, 22 Aug 2019 01:25:51 +0000 (21:25 -0400)
commit3ba46596a0bd17793f9e72991e59e9b14dd4a08e
tree250e51457b4a6bb465d07a252a67eae48c6eead1
parent5a1f24a608687fab1670950d4b463260a379ef6b
Fix StyleCop warning SA1006 (empty statements)

This is just running the rule and auto-fixing everything.  I undid changes that converted e.g. `while (...);` to `while (...) { }`.

Commit migrated from https://github.com/dotnet/coreclr/commit/ef147b4841cc97c098d2e9917b2096bdb0ed665c
24 files changed:
src/coreclr/src/System.Private.CoreLib/src/System/Reflection/Emit/ModuleBuilder.cs
src/coreclr/src/System.Private.CoreLib/src/System/Runtime/InteropServices/ComEventsSink.cs
src/coreclr/src/System.Private.CoreLib/src/System/Runtime/InteropServices/WindowsRuntime/WindowsRuntimeMarshal.cs
src/coreclr/src/System.Private.CoreLib/src/System/StubHelpers.cs
src/libraries/System.Private.CoreLib/src/System/DateTime.Windows.cs
src/libraries/System.Private.CoreLib/src/System/Diagnostics/Tracing/EventProvider.cs
src/libraries/System.Private.CoreLib/src/System/Diagnostics/Tracing/EventSource.cs
src/libraries/System.Private.CoreLib/src/System/Diagnostics/Tracing/TraceLogging/TraceLoggingEventTypes.cs
src/libraries/System.Private.CoreLib/src/System/Diagnostics/Tracing/Winmeta.cs
src/libraries/System.Private.CoreLib/src/System/Globalization/CalendarWeekRule.cs
src/libraries/System.Private.CoreLib/src/System/Globalization/CalendricalCalculationsHelper.cs
src/libraries/System.Private.CoreLib/src/System/Globalization/CharUnicodeInfo.cs
src/libraries/System.Private.CoreLib/src/System/Globalization/DateTimeFormat.cs
src/libraries/System.Private.CoreLib/src/System/Globalization/DateTimeFormatInfo.cs
src/libraries/System.Private.CoreLib/src/System/Globalization/DateTimeParse.cs
src/libraries/System.Private.CoreLib/src/System/Globalization/GregorianCalendarHelper.cs
src/libraries/System.Private.CoreLib/src/System/Globalization/HebrewNumber.cs
src/libraries/System.Private.CoreLib/src/System/Globalization/TimeSpanParse.cs
src/libraries/System.Private.CoreLib/src/System/Runtime/GCSettings.cs
src/libraries/System.Private.CoreLib/src/System/Runtime/InteropServices/ComTypes/ITypeInfo.cs
src/libraries/System.Private.CoreLib/src/System/Runtime/InteropServices/Marshal.cs
src/libraries/System.Private.CoreLib/src/System/Runtime/InteropServices/SafeHandle.cs
src/libraries/System.Private.CoreLib/src/System/TimeZoneInfo.cs
src/libraries/System.Private.CoreLib/src/System/Tuple.cs