addressing comments

This commit is contained in:
iadgovuser26 2022-07-18 14:13:37 -04:00
parent 49707fef84
commit eabc352eb4

View File

@ -357,12 +357,12 @@ public class Commander {
* @return false is an invalid combination was found * @return false is an invalid combination was found
*/ */
public final boolean checkForInvalidOptions() { public final boolean checkForInvalidOptions() {
if (!bEventIds && (bEventHex || bContentHex)) { if (!bEventIds && (bEventHex || bContentHex)) {
bValidArgs = false; bValidArgs = false;
} else if (bHex && (bEventHex || bContentHex)) { } else if (bHex && (bEventHex || bContentHex)) {
bValidArgs = false; bValidArgs = false;
} else { } else {
bValidArgs = true; bValidArgs = true;
} }
return bValidArgs; return bValidArgs;
} }