Fix checkstyle

This commit is contained in:
Trustin Lee 2013-03-21 19:01:53 +09:00
parent 2aa0bf73dc
commit cfa2f72681

View File

@ -488,7 +488,8 @@ public class DefaultPromise<V> extends AbstractFuture<V> implements Promise<V> {
if (listeners instanceof DefaultPromiseListeners) {
notifyListeners0(DefaultPromise.this, (DefaultPromiseListeners) listeners);
} else {
notifyListener0(DefaultPromise.this, (GenericFutureListener<? extends Future<V>>) listeners);
notifyListener0(
DefaultPromise.this, (GenericFutureListener<? extends Future<V>>) listeners);
}
}
});