We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b3511d commit c0fa453Copy full SHA for c0fa453
1 file changed
json-java21-jsonpath/src/main/java/json/java21/jsonpath/JsonPathAst.java
@@ -11,7 +11,7 @@ record JsonPathAst(List<Segment> segments) {
11
12
sealed interface Segment permits Segment.Child, Segment.Wildcard {
13
record Child(String name) implements Segment {
14
- Child {
+ public Child {
15
Objects.requireNonNull(name, "name must not be null");
16
}
17
0 commit comments