feat: Started implementing Strings
This commit is contained in:
@@ -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);
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user