Remove unnecessary semicolons.
This commit is contained in:
parent
f9a19517d5
commit
e84571a5f2
@ -100,5 +100,5 @@ public enum ChannelState {
|
|||||||
* Represents a {@link Channel}'s {@link Channel#getInterestOps() interestOps}
|
* Represents a {@link Channel}'s {@link Channel#getInterestOps() interestOps}
|
||||||
* property
|
* property
|
||||||
*/
|
*/
|
||||||
INTEREST_OPS;
|
INTEREST_OPS
|
||||||
}
|
}
|
||||||
|
@ -40,5 +40,5 @@ public enum ZlibWrapper {
|
|||||||
* Try {@link #ZLIB} first and then {@link #NONE} if the first attempt fails.
|
* Try {@link #ZLIB} first and then {@link #NONE} if the first attempt fails.
|
||||||
* Please note that you can specify this wrapper type only when decompressing.
|
* Please note that you can specify this wrapper type only when decompressing.
|
||||||
*/
|
*/
|
||||||
ZLIB_OR_NONE;
|
ZLIB_OR_NONE
|
||||||
}
|
}
|
||||||
|
@ -136,7 +136,7 @@ public abstract class HttpMessageDecoder extends ReplayingDecoder<HttpMessageDec
|
|||||||
READ_CHUNKED_CONTENT,
|
READ_CHUNKED_CONTENT,
|
||||||
READ_CHUNKED_CONTENT_AS_CHUNKS,
|
READ_CHUNKED_CONTENT_AS_CHUNKS,
|
||||||
READ_CHUNK_DELIMITER,
|
READ_CHUNK_DELIMITER,
|
||||||
READ_CHUNK_FOOTER;
|
READ_CHUNK_FOOTER
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -246,7 +246,7 @@ public class HttpPostRequestDecoder {
|
|||||||
MIXEDCLOSEDELIMITER,
|
MIXEDCLOSEDELIMITER,
|
||||||
CLOSEDELIMITER,
|
CLOSEDELIMITER,
|
||||||
PREEPILOGUE,
|
PREEPILOGUE,
|
||||||
EPILOGUE;
|
EPILOGUE
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -25,7 +25,7 @@ package org.jboss.netty.handler.codec.http;
|
|||||||
*/
|
*/
|
||||||
public interface InterfaceHttpData extends Comparable<InterfaceHttpData> {
|
public interface InterfaceHttpData extends Comparable<InterfaceHttpData> {
|
||||||
enum HttpDataType {
|
enum HttpDataType {
|
||||||
Attribute, FileUpload, InternalAttribute;
|
Attribute, FileUpload, InternalAttribute
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -37,5 +37,5 @@ public enum IdleState {
|
|||||||
/**
|
/**
|
||||||
* No data was either received or sent for a while.
|
* No data was either received or sent for a while.
|
||||||
*/
|
*/
|
||||||
ALL_IDLE;
|
ALL_IDLE
|
||||||
}
|
}
|
||||||
|
@ -38,5 +38,5 @@ public enum InternalLogLevel {
|
|||||||
/**
|
/**
|
||||||
* 'ERROR' log level.
|
* 'ERROR' log level.
|
||||||
*/
|
*/
|
||||||
ERROR;
|
ERROR
|
||||||
}
|
}
|
||||||
|
@ -104,6 +104,6 @@ public final class JZlib {
|
|||||||
static final int MAX_BL_BITS = 7;
|
static final int MAX_BL_BITS = 7;
|
||||||
|
|
||||||
enum WrapperType {
|
enum WrapperType {
|
||||||
NONE, ZLIB, GZIP, ZLIB_OR_NONE;
|
NONE, ZLIB, GZIP, ZLIB_OR_NONE
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user