5.0.0 #32

Merged
quentinlegot merged 4 commits from dev into master 2024-02-12 20:49:50 +01:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit b88d7f3e08 - Show all commits

View File

@ -24,10 +24,10 @@ public class ConfigI {
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);
ConfigI file;
T file;
if(Files.exists(path)) {
FileReader reader = new FileReader(path.toFile());

View File

@ -8,7 +8,7 @@ loader_version=0.15.6
fabric_version=0.95.4+1.20.4
maven_group=fr.altarik.toolbox
maven_version=4.5.1
maven_version=5.0.0
git_owner=quentinlegot
git_repo=Toolbox