Remove reference to 5.0 release.

Motivation:

Comments stating that AUTO_CLOSE will be removed in Netty 5.0 are wrong,
as there is no Netty 5.0.

Modifications:

Removed comment.

Result:

No more references to Netty 5.0
This commit is contained in:
buchgr 2016-08-22 14:16:17 +02:00 committed by Norman Maurer
parent 3451b3cbb3
commit 8d1e46ffd1
2 changed files with 3 additions and 3 deletions

View File

@ -195,7 +195,7 @@ public interface ChannelConfig {
ChannelConfig setAutoRead(boolean autoRead);
/**
* @deprecated From version 5.0, {@link Channel} will not be closed on write failure.
* @deprecated Auto close will be removed in a future release.
*
* Returns {@code true} if and only if the {@link Channel} will be closed automatically and immediately on
* write failure. The default is {@code false}.
@ -204,7 +204,7 @@ public interface ChannelConfig {
boolean isAutoClose();
/**
* @deprecated From version 5.0, {@link Channel} will not be closed on write failure.
* @deprecated Auto close will be removed in a future release.
*
* Sets whether the {@link Channel} should be closed automatically and immediately on write faillure.
* The default is {@code false}.

View File

@ -99,7 +99,7 @@ public class ChannelOption<T> extends AbstractConstant<ChannelOption<T>> {
public static final ChannelOption<Boolean> AUTO_READ = valueOf("AUTO_READ");
/**
* @deprecated From version 5.0, {@link Channel} will not be closed on write failure.
* @deprecated Auto close will be removed in a future release.
*
* If {@code true} then the {@link Channel} is closed automatically and immediately on write failure.
* The default value is {@code true}.