Fork of the Fernflower decompiler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fernflower/testData/results/TestSynchronizedMapping.dec

36 lines
520 B

package pkg;
public class TestSynchronizedMapping {
public int test(int var1) {
synchronized(this) {// 8
return var1++;// 9
}
}
public void test2(String var1) {
System.out.println(var1);// 14
}// 15
}
class 'pkg/TestSynchronizedMapping' {
method 'test (I)I' {
3 4
5 5
a 5
}
method 'test2 (Ljava/lang/String;)V' {
0 10
4 10
7 11
}
}
Lines mapping:
8 <-> 5
9 <-> 6
14 <-> 11
15 <-> 12
Not mapped:
10