Skip to content

Commit d88aa75

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

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,12 @@ public class JsonPointer implements Serializable
7676
/* Construction
7777
/**********************************************************
7878
*/
79-
79+
8080
/**
8181
* Constructor used for creating "empty" instance, used to represent
82-
* state that matches current node. Note that this constructor must be public for
83-
* implementing {@link Externalizable}.
82+
* state that matches current node.
8483
*/
85-
public JsonPointer() {
84+
protected JsonPointer() {
8685
_nextSegment = null;
8786
_matchingPropertyName = "";
8887
_matchingElementIndex = -1;

0 commit comments

Comments
 (0)