Skip to content

Commit

Permalink
Merge pull request #42 from josemduarte/master
Browse files Browse the repository at this point in the history
Bugfix: the null strings shouldn't be converted to ""
  • Loading branch information
josemduarte committed Jun 15, 2017
2 parents 98ec542 + b84c65c commit 3b198e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public Object get(String s) {
public String getString(String s) {
Object o = root.get(s);
if (o == null) {
return "";
return null;
} else {
return (String) root.get(s);
}
Expand Down

0 comments on commit 3b198e9

Please sign in to comment.