Author: minho
Date: Tue Jul 7 00:27:49 2015
New Revision: 1689535
URL: http://svn.apache.org/r1689535
Log:
Modify wrong help message of the FastGraphGen example
Modified:
hama/trunk/examples/src/main/java/org/apache/hama/examples/util/FastGraphGen.java
Modified:
hama/trunk/examples/src/main/java/org/apache/hama/examples/util/FastGraphGen.java
URL:
http://svn.apache.org/viewvc/hama/trunk/examples/src/main/java/org/apache/hama/examples/util/FastGraphGen.java?rev=1689535&r1=1689534&r2=1689535&view=diff
==============================================================================
---
hama/trunk/examples/src/main/java/org/apache/hama/examples/util/FastGraphGen.java
(original)
+++
hama/trunk/examples/src/main/java/org/apache/hama/examples/util/FastGraphGen.java
Tue Jul 7 00:27:49 2015
@@ -145,12 +145,12 @@ public class FastGraphGen {
boolean outputType = false;
if (args.length == 0) {
- new HelpFormatter().printHelp("gen -p OUTPUT_PATH [options]", opts);
+ new HelpFormatter().printHelp("gen -o OUTPUT_PATH [options]", opts);
System.exit(-1);
}
if (cliParser.hasOption("h")) {
- new HelpFormatter().printHelp("FastGraphGen -p OUTPUT_PATH [options]",
opts);
+ new HelpFormatter().printHelp("FastGraphGen -o OUTPUT_PATH [options]",
opts);
return;
}