IDEA-140321 Wrong current line highlighting when debugging synchronized block in decompiled code

This commit is contained in:
Egor.Ushakov
2015-05-18 18:40:38 +03:00
parent 44ba5816f2
commit 022d552b30
4 changed files with 30 additions and 14 deletions

View File

@@ -6,8 +6,9 @@ import java.lang.Runnable;
public class TestSynchronizedMapping {
public int test(int a) {
synchronized (this) {
return a++;
a++;
}
return a++;
}
public void test2(String a) {