Skip to content

Commit

Permalink
Merge pull request Azure#5 from jianghaolu/flattening
Browse files Browse the repository at this point in the history
Add 2 more tests to flattening
  • Loading branch information
stankovski committed Feb 29, 2016
2 parents c60a85b + 6133292 commit b6b7223
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ public Object deserialize(JsonParser jp, DeserializationContext ctxt) throws IOE
if (value.matches(".+[^\\\\]\\..+")) {
String[] values = value.split("((?<!\\\\))\\.");
for (String val : values) {
val = val.replace("\\.", ".");
node = node.get(val);
if (node == null) {
break;
Expand Down

0 comments on commit b6b7223

Please sign in to comment.