HADOOP-13320. Fix arguments check in documentation for WordCount v2.0. Contributed by niccolo becchi.
This closes #108
This commit is contained in:
parent
6e597600f7
commit
9d46a49c74
|
@ -1040,7 +1040,7 @@ public class WordCount2 {
|
|||
Configuration conf = new Configuration();
|
||||
GenericOptionsParser optionParser = new GenericOptionsParser(conf, args);
|
||||
String[] remainingArgs = optionParser.getRemainingArgs();
|
||||
if (!(remainingArgs.length != 2 | | remainingArgs.length != 4)) {
|
||||
if ((remainingArgs.length != 2) && (remainingArgs.length != 4)) {
|
||||
System.err.println("Usage: wordcount <in> <out> [-skip skipPatternFile]");
|
||||
System.exit(2);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue