Skip to content

Commit

Permalink
fixed files form Lang #55
Browse files Browse the repository at this point in the history
  • Loading branch information
tdurieux committed Mar 7, 2017
1 parent e00905e commit b2ee7da
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions projects/Lang/55/org/apache/commons/lang/time/StopWatch.java
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ public void stop() {
if(this.runningState != STATE_RUNNING && this.runningState != STATE_SUSPENDED) {
throw new IllegalStateException("Stopwatch is not running. ");
}
if(this.runningState == STATE_RUNNING) {
stopTime = System.currentTimeMillis();
}
this.runningState = STATE_STOPPED;
}

Expand Down

0 comments on commit b2ee7da

Please sign in to comment.