decompiler: fixed incorrect line mapping after abstract and native methods
This commit is contained in:
19
testData/src/pkg/TestAbstractMethods.java
Normal file
19
testData/src/pkg/TestAbstractMethods.java
Normal file
@@ -0,0 +1,19 @@
|
||||
package pkg;
|
||||
|
||||
import java.lang.Override;
|
||||
import java.lang.Runnable;
|
||||
|
||||
public abstract class TestAbstractMethods {
|
||||
|
||||
public abstract void foo();
|
||||
|
||||
public int test(int a) {
|
||||
return a;
|
||||
}
|
||||
|
||||
protected abstract void foo1();
|
||||
|
||||
public void test2(String a) {
|
||||
System.out.println(a);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user