Merge pull request #1334 from amorris13/patch-1

Remove redundant condition (A || A)
This commit is contained in:
Connor Tumbleson 2016-10-06 07:19:27 -04:00 committed by GitHub
commit 466319ad51

View File

@ -94,7 +94,7 @@ public class Main {
// if no commands ran, run the version / usage check.
if (cmdFound == false) {
if (commandLine.hasOption("version") || commandLine.hasOption("version")) {
if (commandLine.hasOption("version")) {
_version();
} else {
usage(commandLine);