Remove unnecessary options to console run.
git-svn-id: file:///home/svn/framework3/trunk@10298 4d416f70-5f16-0410-b530-b9f4589650daunstable
parent
cefe0ecb45
commit
f18ce42d1f
Binary file not shown.
|
@ -344,7 +344,8 @@ public class ModulePopup extends MsfFrame implements TreeSelectionListener{
|
|||
String optVal = optionField.getText();
|
||||
Object defaultVal = ((Map)options.get(optName)).get("default");
|
||||
//only need non-default vals
|
||||
if((defaultVal == null && optVal.length() > 0) || (defaultVal != null && ! optVal.equals(defaultVal)))
|
||||
if((defaultVal == null && optVal.length() > 0 && (!optName.equals("WORKSPACE") || !optVal.equals("default"))
|
||||
|| (defaultVal != null && ! optVal.equals(defaultVal.toString()))))
|
||||
hash.put(optName, optVal);
|
||||
}
|
||||
//Execute and get results
|
||||
|
|
Loading…
Reference in New Issue