Fix code style

This commit is contained in:
Juuz
2025-08-18 20:20:09 +03:00
parent 3d531ac041
commit a7ef1472b0

View File

@@ -53,11 +53,13 @@ public final class ModMetadataFiles {
var text = new String(bytes, StandardCharsets.UTF_8); var text = new String(bytes, StandardCharsets.UTF_8);
Jankson jankson = Jankson.builder().build(); Jankson jankson = Jankson.builder().build();
String json; String json;
try { try {
json = jankson.fromJson(text, JsonElement.class).toJson(JsonGrammar.STRICT); json = jankson.fromJson(text, JsonElement.class).toJson(JsonGrammar.STRICT);
} catch (SyntaxError e) { } catch (SyntaxError e) {
throw ExceptionUtil.createDescriptiveWrapper(RuntimeException::new, "Could not read JSON5 file", e); throw ExceptionUtil.createDescriptiveWrapper(RuntimeException::new, "Could not read JSON5 file", e);
} }
return next.apply(json.getBytes(StandardCharsets.UTF_8)); return next.apply(json.getBytes(StandardCharsets.UTF_8));
}; };
} }