gradle build
- remove checked-in jars (except the ones loaded by tests) - configure eclipse settings for STS
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package accessors;
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
public class PrivateFields {
|
||||
|
||||
private static boolean b = false;
|
||||
|
||||
private static String someStaticString = "def";
|
||||
|
||||
private int i;
|
||||
|
||||
private String someString;
|
||||
|
||||
private long lng;
|
||||
|
||||
public PrivateFields() {
|
||||
i = 23;
|
||||
someString = "abc";
|
||||
lng = 32768L;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user