decompiler: fixed line mapping in try-catch block
This commit is contained in:
@@ -1,6 +1,21 @@
|
||||
package pkg;
|
||||
|
||||
public class TestTryCatchFinally {
|
||||
public void test1(String var1) {
|
||||
try {
|
||||
System.out.println("sout1");
|
||||
} catch (Exception var9) {
|
||||
try {
|
||||
System.out.println("sout2");
|
||||
} catch (Exception var8) {
|
||||
;
|
||||
}
|
||||
} finally {
|
||||
System.out.println("finally");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public int test(String var1) {
|
||||
try {
|
||||
int var2 = Integer.parseInt(var1);
|
||||
|
||||
Reference in New Issue
Block a user