Ignore "#" in SQL passwords.

This commit is contained in:
GJ 2013-09-30 08:36:32 -04:00
parent 00918fbdc1
commit 98e5e53fda

View File

@ -76,7 +76,7 @@ public abstract class AutoUpdateConfigLoader extends ConfigLoader {
String line;
while ((line = reader.readLine()) != null) {
if (line.contains("#")) {
if (line.contains("#") && !line.contains("User_Password:")) {
temp += line + "\n";
}
else if (line.contains(":")) {