clean code

This commit is contained in:
2023-02-27 23:36:53 +01:00
parent 7243e403e1
commit dd4a5de2ab
2 changed files with 0 additions and 13 deletions

View File

@@ -128,7 +128,6 @@ public class T2Cconfig {
return T2Creplace.replaceObject(prefix, yamlConfiguration.get(path));
}
public static Integer selectInt(String path, YamlConfiguration yamlConfiguration) {
return (yamlConfiguration.getInt(path));
}
@@ -149,7 +148,6 @@ public class T2Cconfig {
return (yamlConfiguration.getItemStack(path));
}
public static List<String> selectList(String prefix, String path, YamlConfiguration yamlConfiguration) {
List<String> output = new ArrayList<>();
List<String> input = yamlConfiguration.getStringList(path);