Removed unused code from HashedWheelTimer

This commit is contained in:
Trustin Lee 2009-02-08 07:04:26 +00:00
parent c46be1c7f9
commit fff170b71e

View File

@ -230,15 +230,6 @@ public class HashedWheelTimer implements Timer {
return timeout;
}
boolean isWheelEmpty() {
for (Set<HashedWheelTimeout> bucket: wheel) {
if (!bucket.isEmpty()) {
return false;
}
}
return true;
}
private final class Worker implements Runnable {
private long startTime;