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 ebd8068 commit 09fdcdaCopy full SHA for 09fdcda
src/test/java/com/networknt/schema/CustomMetaSchemaTest.java
@@ -80,7 +80,7 @@ private List<String> readStringList(JsonNode node) {
80
if (!node.isArray()) {
81
throw new JsonSchemaException("Keyword enum needs to receive an array");
82
}
83
- ArrayList<String> result = new ArrayList<>(node.size());
+ ArrayList<String> result = new ArrayList<String>(node.size());
84
for (JsonNode child : node) {
85
result.add(child.asText());
86
0 commit comments