renamed all modules
This commit is contained in:
14
testdata/src/main/java/fields/NotReloadable.java
vendored
Normal file
14
testdata/src/main/java/fields/NotReloadable.java
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
package fields;
|
||||
|
||||
public class NotReloadable {
|
||||
|
||||
public int i = 5;
|
||||
|
||||
public void setI_NotReloadable(int newi) {
|
||||
this.i = newi;
|
||||
}
|
||||
|
||||
public int getI_NotReloadable() {
|
||||
return this.i;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user