389965 OPTIONS should allow spaces in comma separated list

This commit is contained in:
Jan Bartel 2012-09-20 17:02:18 +10:00
parent 04d8dc664f
commit 1c5d007384
1 changed files with 1 additions and 1 deletions

View File

@ -288,7 +288,7 @@ public class Main
{
String opts[] = assign[1].split(",");
for (String opt : opts)
_config.addActiveOption(opt);
_config.addActiveOption(opt.trim());
}
else
{