Skip to content

Commit

Permalink
fix jsonpath doc, for issue #1634
Browse files Browse the repository at this point in the history
  • Loading branch information
wenshao committed Jul 22, 2023
1 parent d83ff28 commit 95baa75
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions docs/jsonpath_cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,4 @@ result = (Collection<String>)JSONPath.eval(map, "$.e.keySet()");
assertEquals(2, result.size());
.assertTrue(result.contains("id")); // included
assertTrue(result.contains("name"));

// Same result
assertEquals(result, JSONPath.keySet(map, "$.e"));
assertEquals(result, new JSONPath("$.e").keySet(map));
```

0 comments on commit 95baa75

Please sign in to comment.