Skip to content

Commit

Permalink
Fixed small bug
Browse files Browse the repository at this point in the history
  • Loading branch information
cap_protect committed Nov 4, 2011
1 parent d4dd475 commit e5351cf
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 Original file line Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void add(long time) {
if (count == 0 || minimum > time) { if (count == 0 || minimum > time) {
minimum = time; minimum = time;
} }
if (count == 0 || maximum > time) { if (count == 0 || maximum < time) {
maximum = time; maximum = time;
} }
this.time += time; this.time += time;
Expand Down

0 comments on commit e5351cf

Please sign in to comment.