IDEA-197665 Decompiler decompiles references to static fields inside class incorrectly
This commit is contained in:
Binary file not shown.
@@ -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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user