feat: Started implementing Strings

This commit is contained in:
2025-05-19 11:04:54 +02:00
parent 8c74441e70
commit 683813145a

View File

@@ -14,4 +14,11 @@ public class Strings {
ObjectMapper objectMapper = new ObjectMapper(); ObjectMapper objectMapper = new ObjectMapper();
return objectMapper.readValue(new File("./strings.json"), Strings.class); return objectMapper.readValue(new File("./strings.json"), Strings.class);
} }
public void test(String prop) throws NoSuchFieldException {
var field = this.getClass().getDeclaredField(prop);
field.setAccessible(true);
}
} }