Skip to content

Commit

Permalink
make JsonPointer and Operation public for visibility in JsonPatchAppl…
Browse files Browse the repository at this point in the history
…icationException (#170)
  • Loading branch information
elisaherold authored Feb 7, 2023
1 parent 49ab75c commit cc0f0bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/flipkart/zjsonpatch/JsonPointer.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
*
* @since 0.4.8
*/
class JsonPointer {
public class JsonPointer {
private final RefToken[] tokens;

/** A JSON pointer representing the root node of a JSON document */
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/flipkart/zjsonpatch/Operation.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* User: gopi.vishwakarma
* Date: 30/07/14
*/
enum Operation {
public enum Operation {
ADD("add"),
REMOVE("remove"),
REPLACE("replace"),
Expand Down

0 comments on commit cc0f0bf

Please sign in to comment.