From 47214367aab1c11d7d242d9acfea3512e6b7c837 Mon Sep 17 00:00:00 2001 From: Aleksey Kliger Date: Tue, 26 Apr 2022 10:03:07 -0400 Subject: [PATCH] follow code style --- .../System.Private.CoreLib/src/System/Threading/Thread.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libraries/System.Private.CoreLib/src/System/Threading/Thread.cs b/src/libraries/System.Private.CoreLib/src/System/Threading/Thread.cs index 7efa9b6a2a0126..56430968ad03d5 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Threading/Thread.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Threading/Thread.cs @@ -163,7 +163,8 @@ public Thread(ParameterizedThreadStart start, int maxStackSize) #endif #endif - internal static void ThrowIfNoThreadStart() { + internal static void ThrowIfNoThreadStart() + { if (!IsThreadStartSupported) throw new PlatformNotSupportedException(); }