Skip to content

Commit 0fe4212

Browse files
committed
Reverts access modifier change
1 parent 2dccb17 commit 0fe4212

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/fasterxml/jackson/core/JsonPointer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,13 @@ public class JsonPointer implements Serializable
7676
/* Construction
7777
/**********************************************************
7878
*/
79-
79+
8080
/**
8181
* Constructor used for creating "empty" instance, used to represent
8282
* state that matches current node. Note that this constructor must be public for
8383
* implementing {@link Externalizable}.
8484
*/
85-
public JsonPointer() {
85+
protected JsonPointer() {
8686
_nextSegment = null;
8787
_matchingPropertyName = "";
8888
_matchingElementIndex = -1;

0 commit comments

Comments
 (0)