changes number parsing to use BigDecimal as the backing type

* updated tests to support BigDecimal as the backing type for numbers
* updated some test resource handling to java7 try-with-resources format
* cleaned up some other minor compiler warnings
This commit is contained in:
John J. Aylward
2018-12-10 13:19:31 -05:00
parent 956bdfa5b7
commit 56d33b8061
13 changed files with 248 additions and 255 deletions
@@ -19,7 +19,7 @@ public enum SingletonEnum {
/** single instance. */
/**
* @return the singleton instance. I a real application, I'd hope no one did
* @return the singleton instance. In a real application, I'd hope no one did
* this to an enum singleton.
*/
public static final SingletonEnum getInstance() {
@@ -32,7 +32,7 @@ public enum SingletonEnum {
/** @return someInt */
public int getSomeInt() {
return someInt;
return this.someInt;
}
/**
@@ -47,7 +47,7 @@ public enum SingletonEnum {
/** @return someString */
public String getSomeString() {
return someString;
return this.someString;
}
/**