[BUGFIX] Solving currentThread null return

Solves issue #222
This commit is contained in:
JKetelaar
2017-09-11 23:05:42 +02:00
parent 2434c7f5ca
commit f284fa0e80
@@ -24,7 +24,7 @@ public class ThreadRedirect {
} }
public static Thread currentThread(){ public static Thread currentThread(){
return null; return new Thread();
} }
public static void join(Thread t) throws InterruptedException{ public static void join(Thread t) throws InterruptedException{