quieted a dumb warning and tripped useless code

This commit is contained in:
punkrockguy318 2008-06-10 06:20:39 +00:00
parent d00be0620b
commit 4df6b97013
1 changed files with 1 additions and 1 deletions

View File

@ -599,7 +599,7 @@ Config::_load()
// check line validity
eqPos = line.find("=");
if(line[0] == '#' || eqPos == std::string::npos) {
if(line[0] == '#') {
// skip this line
continue;
}