Big findbugs cleanup

This commit is contained in:
zzz
2008-10-19 22:09:14 +00:00
parent 8a756a6e81
commit 20effe3a7f
77 changed files with 261 additions and 245 deletions

View File

@@ -76,7 +76,7 @@ public class Frequency {
long duration = now() - _start;
if ((duration <= 0) || (_count <= 0)) return 0;
return duration / _count;
return duration / (double) _count;
}
}
@@ -167,4 +167,4 @@ public class Frequency {
private final static long now() {
return System.currentTimeMillis();
}
}
}