Skip to content

Commit bcf9b09

Browse files
committed
Add RFC6901 json pointer support
1 parent 6a260f3 commit bcf9b09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/redis/clients/jedis/json/JsonPointer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
/**
66
* an RFC6901 implementation that convert json pointer path to json path.
77
*/
8-
public class JsonPointer {
8+
class JsonPointer {
99

10-
public static String parse(String path, String rootPath) {
10+
static String parse(String path, String rootPath) {
1111
Objects.requireNonNull(path, "Json Pointer Path cannot be null.");
1212

1313
if (path.isEmpty()) {

0 commit comments

Comments
 (0)