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 1df8f2ccd1
commit 91b62da8c1

View File

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