renamed all modules
This commit is contained in:
19
testdata/src/main/java/catchers/A.java
vendored
Normal file
19
testdata/src/main/java/catchers/A.java
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
package catchers;
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
public class A {
|
||||
public int publicMethod() {
|
||||
return 65;
|
||||
}
|
||||
|
||||
private int privateMethod() {
|
||||
return 2222;
|
||||
}
|
||||
|
||||
void defaultMethod() {
|
||||
}
|
||||
|
||||
protected int protectedMethod() {
|
||||
return 23;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user