Added FIXME (will be fixed in 3.2 or later)

This commit is contained in:
Trustin Lee 2009-04-03 08:11:24 +00:00
parent ec0b3fe3f2
commit db6725dcbd

View File

@ -70,6 +70,7 @@ public class DefaultObjectSizeEstimator implements ObjectSizeEstimator {
int answer = 8 + estimateSize(o.getClass(), null);
// FIXME: Cyclic dependency
if (o instanceof ChannelEventRunnable) {
answer += estimateSize(((ChannelEventRunnable) o).getEvent());
} else if (o instanceof MessageEvent) {