diff --git a/codec-http/src/main/java/io/netty/handler/codec/http/multipart/InternalAttribute.java b/codec-http/src/main/java/io/netty/handler/codec/http/multipart/InternalAttribute.java index d2c25c8353..e929fb7c4b 100644 --- a/codec-http/src/main/java/io/netty/handler/codec/http/multipart/InternalAttribute.java +++ b/codec-http/src/main/java/io/netty/handler/codec/http/multipart/InternalAttribute.java @@ -22,8 +22,8 @@ import java.util.List; * This Attribute is only for Encoder use to insert special command between object if needed * (like Multipart Mixed mode) */ -public class InternalAttribute implements InterfaceHttpData { - protected final List value = new ArrayList(); +final class InternalAttribute implements InterfaceHttpData { + private final List value = new ArrayList(); @Override public HttpDataType getHttpDataType() {