fix compile error

This commit is contained in:
zzz
2008-09-06 15:54:53 +00:00
parent 9a2792e64c
commit 2ac5361937

View File

@ -124,7 +124,7 @@ public class Shitlist {
Entry e = new Entry();
if (forever) {
e.expireOn = _context.clock().now() + SHITLIST_DURATION_FOREVER;
else if (transport != null) {
} else if (transport != null) {
e.expireOn = _context.clock().now() + SHITLIST_DURATION_PARTIAL;
} else {
long period = SHITLIST_DURATION_MS + _context.random().nextLong(SHITLIST_DURATION_MS);