We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7a11b2 commit ca93cf8Copy full SHA for ca93cf8
.github/project.yml
@@ -1,3 +1,3 @@
1
release:
2
- current-version: 2.0.0.BETA2
+ current-version: 2.0.0.BETA3
3
next-version: "999-SNAPSHOT"
roq-frontmatter/runtime/src/main/java/io/quarkiverse/roq/frontmatter/runtime/RoqTemplateExtension.java
@@ -162,7 +162,8 @@ public static List<JsonObject> asJsonObjects(JsonArray jsonArray) {
162
return o;
163
} else {
164
throw new RuntimeException(
165
- "asJsonObjects should only be called if all items are instance of JsonObject (not: %s)".formatted(item));
+ "asJsonObjects should only be called if all items are instance of JsonObject (not: %s)"
166
+ .formatted(item));
167
}
168
}).toList();
169
0 commit comments