lotus 15 years ago
parent 84a023cbc8
commit 4450c240b7

@ -104,7 +104,7 @@ public class serverAccessTracker {
Collection<Track> timeList = accessTrack(host);
long time = System.currentTimeMillis() - delta;
int c = 0;
for (Track l: timeList) if (l.getTime() > time) c++;
for (Track l: timeList) if ( l != null && l.getTime() > time) c++;
return c;
}

Loading…
Cancel
Save