mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-18 13:40:45 +01:00
update sharpcifs
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user