Files
fernflower/testData/results/TestStaticNameClash.dec
2016-03-15 07:41:25 +02:00

21 lines
355 B
Plaintext

package pkg;
public class TestStaticNameClash {
public static String property;
public static void setProperty(String property) {
TestStaticNameClash.property = property;// 12
}// 13
}
class 'pkg/TestStaticNameClash' {
method 'setProperty (Ljava/lang/String;)V' {
1 6
4 7
}
}
Lines mapping:
12 <-> 7
13 <-> 8