do not use anonymous threads

This commit is contained in:
Alexey Kudravtsev
2015-06-05 14:44:27 +03:00
parent 022d552b30
commit 32d7924fe0

View File

@@ -91,7 +91,7 @@ public class ClassWrapper {
else {
MethodProcessorRunnable mtProc = new MethodProcessorRunnable(mt, varProc, DecompilerContext.getCurrentContext());
Thread mtThread = new Thread(mtProc);
Thread mtThread = new Thread(mtProc, "Java decompiler");
long stopAt = System.currentTimeMillis() + maxSec * 1000;
mtThread.start();