Skip to content
Snippets Groups Projects
Commit 2d2b612b authored by Michael White's avatar Michael White
Browse files

Fixed bug with help message noted by Michael Lane.

parent 40df64c4
No related branches found
No related tags found
No related merge requests found
......@@ -61,7 +61,7 @@ public class Parse {
" (-nbestListSize <nbestListSize>) \n" +
" <inputfile> <outputfile>";
if (args.length == 0 && args[0].equals("-h")) {
if (args.length == 0 || args[0].equals("-h")) {
System.out.println(usage);
System.exit(0);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment