Skip to content

Commit

Permalink
Fixed small bug
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksiyp committed Nov 4, 2011
1 parent 315d438 commit 471b899
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified loadtest-1.0.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion src/main/java/org/loadtest/Stats.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void add(long time) {
if (count == 0 || minimum > time) {
minimum = time;
}
if (count == 0 || maximum > time) {
if (count == 0 || maximum < time) {
maximum = time;
}
this.time += time;
Expand Down

0 comments on commit 471b899

Please sign in to comment.