decompiler: fixed incorrect line mapping after abstract and native methods

This commit is contained in:
Egor.Ushakov
2014-12-24 20:42:07 +03:00
parent 472f68f18a
commit 4a6a658b4c
7 changed files with 68 additions and 16 deletions

View File

@@ -2,13 +2,13 @@ package pkg;
public class TestSynchronizedMapping {
public int test(int var1) {
synchronized(this) {
return var1++;
synchronized(this) {// 8
return var1++;// 9
}
}
public void test2(String var1) {
System.out.println(var1);
System.out.println(var1);// 14
}
}