diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-07-08 03:25:24 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-07-08 03:25:24 -0400 |
| commit | 71eb9f143fa85fac8b76857c054217cab3aa9536 (patch) | |
| tree | a095849d99d339c40ebf7d6e7f53883ab33489f7 /Emby.Common.Implementations/IO/SharpCifs/Util/Sharpen/ThreadFactory.cs | |
| parent | a7187180bfba4117e01837a6b40c775e00c04b1b (diff) | |
update sharpcifs
Diffstat (limited to 'Emby.Common.Implementations/IO/SharpCifs/Util/Sharpen/ThreadFactory.cs')
| -rw-r--r-- | Emby.Common.Implementations/IO/SharpCifs/Util/Sharpen/ThreadFactory.cs | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/Emby.Common.Implementations/IO/SharpCifs/Util/Sharpen/ThreadFactory.cs b/Emby.Common.Implementations/IO/SharpCifs/Util/Sharpen/ThreadFactory.cs index 539ebedcf..7276c06a2 100644 --- a/Emby.Common.Implementations/IO/SharpCifs/Util/Sharpen/ThreadFactory.cs +++ b/Emby.Common.Implementations/IO/SharpCifs/Util/Sharpen/ThreadFactory.cs @@ -1,16 +1,13 @@ -using System.Threading.Tasks; - namespace SharpCifs.Util.Sharpen { - internal class ThreadFactory - { - public Thread NewThread(IRunnable r) - { - Thread t = new Thread(r); - t.SetDaemon(true); - t.Start(true); - - return t; - } - } + internal class ThreadFactory + { + public Thread NewThread (IRunnable r) + { + Thread t = new Thread (r); + t.SetDaemon (true); + t.Start (); + return t; + } + } } |
