mirror of
https://github.com/stleary/JSON-java.git
synced 2026-05-19 00:00:46 -04:00
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:
@@ -4,9 +4,9 @@ public class MyLocaleBean {
|
||||
private final String id = "beanId";
|
||||
private final String i = "beanI";
|
||||
public String getId() {
|
||||
return id;
|
||||
return this.id;
|
||||
}
|
||||
public String getI() {
|
||||
return i;
|
||||
return this.i;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user