Remove unnecessary semicolons.

This commit is contained in:
Craig P. Motlin 2011-11-12 13:14:16 -05:00
parent f9a19517d5
commit e84571a5f2
8 changed files with 8 additions and 8 deletions

View File

@ -100,5 +100,5 @@ public enum ChannelState {
* Represents a {@link Channel}'s {@link Channel#getInterestOps() interestOps}
* property
*/
INTEREST_OPS;
INTEREST_OPS
}

View File

@ -40,5 +40,5 @@ public enum ZlibWrapper {
* 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.
*/
ZLIB_OR_NONE;
ZLIB_OR_NONE
}

View File

@ -136,7 +136,7 @@ public abstract class HttpMessageDecoder extends ReplayingDecoder<HttpMessageDec
READ_CHUNKED_CONTENT,
READ_CHUNKED_CONTENT_AS_CHUNKS,
READ_CHUNK_DELIMITER,
READ_CHUNK_FOOTER;
READ_CHUNK_FOOTER
}
/**

View File

@ -246,7 +246,7 @@ public class HttpPostRequestDecoder {
MIXEDCLOSEDELIMITER,
CLOSEDELIMITER,
PREEPILOGUE,
EPILOGUE;
EPILOGUE
}
/**

View File

@ -25,7 +25,7 @@ package org.jboss.netty.handler.codec.http;
*/
public interface InterfaceHttpData extends Comparable<InterfaceHttpData> {
enum HttpDataType {
Attribute, FileUpload, InternalAttribute;
Attribute, FileUpload, InternalAttribute
}
/**

View File

@ -37,5 +37,5 @@ public enum IdleState {
/**
* No data was either received or sent for a while.
*/
ALL_IDLE;
ALL_IDLE
}

View File

@ -38,5 +38,5 @@ public enum InternalLogLevel {
/**
* 'ERROR' log level.
*/
ERROR;
ERROR
}

View File

@ -104,6 +104,6 @@ public final class JZlib {
static final int MAX_BL_BITS = 7;
enum WrapperType {
NONE, ZLIB, GZIP, ZLIB_OR_NONE;
NONE, ZLIB, GZIP, ZLIB_OR_NONE
}
}