summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/Internal/Runtime/Augments/RuntimeThread.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/Internal/Runtime/Augments/RuntimeThread.cs')
-rw-r--r--src/mscorlib/src/Internal/Runtime/Augments/RuntimeThread.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mscorlib/src/Internal/Runtime/Augments/RuntimeThread.cs b/src/mscorlib/src/Internal/Runtime/Augments/RuntimeThread.cs
index 58eff98dec..605f974da0 100644
--- a/src/mscorlib/src/Internal/Runtime/Augments/RuntimeThread.cs
+++ b/src/mscorlib/src/Internal/Runtime/Augments/RuntimeThread.cs
@@ -15,7 +15,7 @@ namespace Internal.Runtime.Augments
{
public class RuntimeThread : CriticalFinalizerObject
{
- internal RuntimeThread() {}
+ internal RuntimeThread() { }
public static RuntimeThread Create(ThreadStart start) => new Thread(start);
public static RuntimeThread Create(ThreadStart start, int maxStackSize) => new Thread(start, maxStackSize);