Skip to content

Commit 681c634

Browse files
committed
Test robustification
1 parent 7de9b3e commit 681c634

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/com/fasterxml/jackson/databind/struct/TestUnwrapped.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ static class Unwrapping {
2323
public Location location;
2424

2525
public Unwrapping() { }
26-
public Unwrapping(String str, int x, int y) {
26+
protected Unwrapping(String str, int x, int y) {
2727
name = str;
2828
location = new Location(x, y);
2929
}
@@ -46,7 +46,7 @@ static class DeepUnwrapping
4646
public Unwrapping unwrapped;
4747

4848
public DeepUnwrapping() { }
49-
public DeepUnwrapping(String str, int x, int y) {
49+
protected DeepUnwrapping(String str, int x, int y) {
5050
unwrapped = new Unwrapping(str, x, y);
5151
}
5252
}

0 commit comments

Comments
 (0)