This commit is contained in:
Norman Maurer 2013-07-12 11:48:26 +02:00
parent 4e604a6553
commit aa64c13bb8
2 changed files with 2 additions and 3 deletions

View File

@ -63,8 +63,7 @@ interface ChannelPropertyAccess {
* Return a special ChannelPromise which can be reused for different operations. * Return a special ChannelPromise which can be reused for different operations.
* <p> * <p>
* It's only supported to use * It's only supported to use
* it for {@link ChannelOutboundInvoker#write(Object, ChannelPromise)} and, * it for {@link ChannelOutboundInvoker#write(Object, ChannelPromise)}.
* {@link ChannelOutboundInvoker#write(MessageList, ChannelPromise)}.
* </p> * </p>
* <p> * <p>
* Be aware that the returned {@link ChannelPromise} will not support most operations and should only be used * Be aware that the returned {@link ChannelPromise} will not support most operations and should only be used

View File

@ -38,7 +38,7 @@ public class ChannelGroupException extends ChannelException implements Iterable<
if (causes.isEmpty()) { if (causes.isEmpty()) {
throw new IllegalArgumentException("causes must be non empty"); throw new IllegalArgumentException("causes must be non empty");
} }
this.failed = Collections.unmodifiableCollection(causes); failed = Collections.unmodifiableCollection(causes);
} }
/** /**