do not use anonymous threads
This commit is contained in:
@@ -91,7 +91,7 @@ public class ClassWrapper {
|
|||||||
else {
|
else {
|
||||||
MethodProcessorRunnable mtProc = new MethodProcessorRunnable(mt, varProc, DecompilerContext.getCurrentContext());
|
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;
|
long stopAt = System.currentTimeMillis() + maxSec * 1000;
|
||||||
|
|
||||||
mtThread.start();
|
mtThread.start();
|
||||||
|
|||||||
Reference in New Issue
Block a user