Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
River_2.1.1
-
None
-
All
Description
While trying to experiment with the -newdirbehaviour and -inroot options I found a bug in the original ClassDep that prevents these options from executing via the command line options:
notice the if (args.equals("-newdirbehavior") it should be if (arg.equals(...
public void setupOptions(String[] args) {
for (int i = 0; i < args.length ; i++ ) {
String arg = args[i];
if (args.equals("-newdirbehavior"))
else if (arg.equals("-cp"))
{ i++; setClassPath(args[i]); }else if (arg.equals("-files"))
{ setFiles(true); }else if ....
See Also River-272