Merge branch 'development' into task/default-argument-output

This commit is contained in:
Jeroen Ketelaar
2019-05-03 05:36:13 -05:00
committed by GitHub
@@ -61,4 +61,8 @@ public class ThreadRedirect {
public static void setUncaughtExceptionHandler(Thread t, Thread.UncaughtExceptionHandler handler) {
t.setUncaughtExceptionHandler(handler);
}
public static boolean isInterrupted(Thread thread) {
return thread.isInterrupted();
}
}