mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[java decompiler] unnecessary rethrow (IDEA-187608; EA-81800)
No need to propagate ThreadDeath here - the thread is going to finish anyway.
This commit is contained in:
+2
-5
@@ -50,11 +50,8 @@ public class MethodProcessorRunnable implements Runnable {
|
||||
DecompilerContext.setCurrentContext(parentContext);
|
||||
root = codeToJava(method, methodDescriptor, varProc);
|
||||
}
|
||||
catch (ThreadDeath ex) {
|
||||
throw ex;
|
||||
}
|
||||
catch (Throwable ex) {
|
||||
error = ex;
|
||||
catch (Throwable t) {
|
||||
error = t;
|
||||
}
|
||||
finally {
|
||||
DecompilerContext.setCurrentContext(null);
|
||||
|
||||
Reference in New Issue
Block a user