Skip to content
Snippets Groups Projects
Commit 9c8bcec7 authored by Daniel's avatar Daniel
Browse files

FIX: Fixed typo in last commit.

parent 74e772ec
Branches
Tags
No related merge requests found
...@@ -151,7 +151,7 @@ public class ServerProperties extends Properties { ...@@ -151,7 +151,7 @@ public class ServerProperties extends Properties {
Arrays.sort(confFiles, Comparator.naturalOrder()); Arrays.sort(confFiles, Comparator.naturalOrder());
for (String confFile : confFiles) { for (String confFile : confFiles) {
// prevent backup files from being read // prevent backup files from being read
if (confFiles.endsWith(".conf")) { if (confFile.endsWith(".conf")) {
loadConfigFile(serverProperties, new File(confDir, confFile)); loadConfigFile(serverProperties, new File(confDir, confFile));
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment