Skip to content

Commit c66c9e3

Browse files
committed
Fixed double method call issue in Configuration class
1 parent 7400504 commit c66c9e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/me/adixe/commonutilslib/configuration/Configuration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ private String load(File file) throws IOException {
132132

133133
String name = formatName(file);
134134

135-
configurationFiles.put(formatName(file), yamlFile);
135+
configurationFiles.put(name, yamlFile);
136136

137137
return name;
138138
}

0 commit comments

Comments
 (0)