We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7de9b3e commit 681c634Copy full SHA for 681c634
src/test/java/com/fasterxml/jackson/databind/struct/TestUnwrapped.java
@@ -23,7 +23,7 @@ static class Unwrapping {
23
public Location location;
24
25
public Unwrapping() { }
26
- public Unwrapping(String str, int x, int y) {
+ protected Unwrapping(String str, int x, int y) {
27
name = str;
28
location = new Location(x, y);
29
}
@@ -46,7 +46,7 @@ static class DeepUnwrapping
46
public Unwrapping unwrapped;
47
48
public DeepUnwrapping() { }
49
- public DeepUnwrapping(String str, int x, int y) {
+ protected DeepUnwrapping(String str, int x, int y) {
50
unwrapped = new Unwrapping(str, x, y);
51
52
0 commit comments