We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When try to decompile the below code and it's been wrongly decompiled.
Input Java Class: public class TestClass { public int test(){ before(); try { inTry(); if(condition()) { return 0; } inTryA(); inTryB(); } finally { inFinally(); } after(); return 1; } private boolean condition() {return false;}; private void before() {}; private void inTry() {}; private void inTryA() {}; private void inTryB() {}; private void inFinally() {}; private void after() {}; } Decompiled Code: public class TestClass { public int test() { before(); try { inTry(); if (condition()) return 0; inTryA(); } finally { inFinally(); } inFinally(); after(); return 1; } private boolean condition() {return false;}; private void before() {}; private void inTry() {}; private void inTryA() {}; private void inTryB() {}; private void inFinally() {}; private void after() {}; } JD-Core version: 1.1.3 Compiled Java Version: 1.8.0_252
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When try to decompile the below code and it's been wrongly decompiled.
Input Java Class:
public class TestClass {
public int test(){
before();
try {
inTry();
if(condition()) {
return 0;
}
inTryA();
inTryB();
} finally {
inFinally();
}
after();
return 1;
}
private boolean condition() {return false;};
private void before() {};
private void inTry() {};
private void inTryA() {};
private void inTryB() {};
private void inFinally() {};
private void after() {};
}
Decompiled Code:
public class TestClass {
public int test() {
before();
try {
inTry();
if (condition())
return 0;
inTryA();
} finally {
inFinally();
}
inFinally();
after();
return 1;
}
private boolean condition() {return false;};
private void before() {};
private void inTry() {};
private void inTryA() {};
private void inTryB() {};
private void inFinally() {};
private void after() {};
}
JD-Core version: 1.1.3
Compiled Java Version: 1.8.0_252
The text was updated successfully, but these errors were encountered: