5.0.0 #32
@ -24,10 +24,10 @@ public class ConfigI {
|
|||||||
return configPath.resolve(name);
|
return configPath.resolve(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static ConfigI load(Path configPath, String name, Class<? extends ConfigI> clazz) throws IOException, JsonSyntaxException, JsonIOException {
|
public static <T extends ConfigI> T load(Path configPath, String name, Class<T> clazz) throws IOException, JsonSyntaxException, JsonIOException {
|
||||||
Path path = getConfigPath(configPath, name);
|
Path path = getConfigPath(configPath, name);
|
||||||
|
|
||||||
ConfigI file;
|
T file;
|
||||||
|
|
||||||
if(Files.exists(path)) {
|
if(Files.exists(path)) {
|
||||||
FileReader reader = new FileReader(path.toFile());
|
FileReader reader = new FileReader(path.toFile());
|
||||||
|
@ -8,7 +8,7 @@ loader_version=0.15.6
|
|||||||
fabric_version=0.95.4+1.20.4
|
fabric_version=0.95.4+1.20.4
|
||||||
|
|
||||||
maven_group=fr.altarik.toolbox
|
maven_group=fr.altarik.toolbox
|
||||||
maven_version=4.5.1
|
maven_version=5.0.0
|
||||||
|
|
||||||
git_owner=quentinlegot
|
git_owner=quentinlegot
|
||||||
git_repo=Toolbox
|
git_repo=Toolbox
|
Loading…
Reference in New Issue
Block a user