IDEA-197665 Decompiler decompiles references to static fields inside class incorrectly

This commit is contained in:
Egor Ushakov
2018-12-18 17:32:57 +03:00
parent 8f2a97adc3
commit ccc203e92b
3 changed files with 5 additions and 8 deletions

View File

@@ -3,8 +3,8 @@ package pkg;
public class TestStaticNameClash {
public static String property;
public static void setProperty(String var0) {
property = var0;// 8
public static void setProperty(String property) {
TestStaticNameClash.property = property;// 8
}// 9
}