fix List configs

This commit is contained in:
Abrar Syed 2012-12-04 20:26:40 -06:00 committed by Christian
parent 021ec72f11
commit 5cb03bc07d
1 changed files with 4 additions and 2 deletions

View File

@ -591,7 +591,9 @@ public class Configuration
}
tmpList = new ArrayList<String>();
skip = true;
break;
case '>':
@ -616,7 +618,7 @@ public class Configuration
{
throw new RuntimeException(String.format("Unmatched quote in '%s:%d'", fileName, lineNum));
}
else if (tmpList != null)
else if (tmpList != null && !skip)
{
tmpList.add(line.trim());
}