Parsing "notime" fixed

This commit is contained in:
Andrey Breslav
2013-05-07 08:39:43 +03:00
parent a342d4fb61
commit 6ebc2cf70b
@@ -74,7 +74,7 @@ public class Preloader {
private static boolean parseMeasureTime(String arg) {
if ("time".equals(arg)) return true;
if ("notime".equals(arg)) return true;
if ("notime".equals(arg)) return false;
System.out.println("Unrecognized argument: " + arg);
printUsageAndExit();
return false;