Skip to content

Commit a3feab3

Browse files
committed
is nullable
1 parent 83ddf55 commit a3feab3

File tree

1 file changed

+1
-1
lines changed
  • json-schema-validator/src/main/java/io/openapiprocessor/jsonschema/schema

1 file changed

+1
-1
lines changed

json-schema-validator/src/main/java/io/openapiprocessor/jsonschema/schema/ResolverRef.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ private static boolean isMetaSchema(String name, Object value) {
115115
return name.equals(Keywords.SCHEMA) && Types.isString(value);
116116
}
117117

118-
private static boolean isNavigable(Keyword keyword) {
118+
private static boolean isNavigable(@Nullable Keyword keyword) {
119119
return keyword != null && keyword.isNavigable();
120120
}
121121

0 commit comments

Comments
 (0)