Remove @deprecation keyword on AbstractUnsafe.ensureOpen(...)

Motivation:

e845670043 marked AbstractUnsafe.ensureOpen(...) as deprecated for no reason.

Modifications:

Remove `@deprecation`

Result:

Remove incorrect annotation
This commit is contained in:
Norman Maurer 2017-06-29 13:18:27 +02:00
parent c71e4459c8
commit e9cf960cba

View File

@ -825,7 +825,6 @@ public abstract class AbstractChannel extends DefaultAttributeMap implements Cha
return unsafeVoidPromise;
}
@Deprecated
protected final boolean ensureOpen(ChannelPromise promise) {
if (isOpen()) {
return true;