Skip to content

Commit

Permalink
[BUG FIX] Program was reporting as misconfigured.
Browse files Browse the repository at this point in the history
Program was reporting itself as misconfigured when it was not
  • Loading branch information
ReidWeb committed Jan 31, 2016
1 parent a1f3e3f commit b4b8512
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -273,11 +273,11 @@ public void run() throws Exception {
public String isConfigured() {
boolean configured = true;
StringBuilder sbOut = new StringBuilder();
if (this.startId == 0 || this.startId < 0) {
if ( this.startId < 0) {
sbOut.append("Start ID must be configured to a positive numerical value\n");
configured = false;
}
if (this.endId == 0 || this.endId < 0) {
if ( this.endId < 0) {
sbOut.append("End ID must be configured to a positive numerical value\n");
configured = false;
}
Expand Down

0 comments on commit b4b8512

Please sign in to comment.