Remove unnecessary calls to 'super()'.
This commit is contained in:
parent
9b9ee79f27
commit
f0520dad20
@ -60,7 +60,6 @@ public class Bootstrap implements ExternalResourceReleasable {
|
|||||||
* I/O operation is requested.
|
* I/O operation is requested.
|
||||||
*/
|
*/
|
||||||
protected Bootstrap() {
|
protected Bootstrap() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -118,7 +118,6 @@ public class ClientBootstrap extends Bootstrap {
|
|||||||
* operation is requested.
|
* operation is requested.
|
||||||
*/
|
*/
|
||||||
public ClientBootstrap() {
|
public ClientBootstrap() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -127,7 +127,6 @@ public class ConnectionlessBootstrap extends Bootstrap {
|
|||||||
* operation is requested.
|
* operation is requested.
|
||||||
*/
|
*/
|
||||||
public ConnectionlessBootstrap() {
|
public ConnectionlessBootstrap() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -170,7 +170,6 @@ public class ServerBootstrap extends Bootstrap {
|
|||||||
* operation is requested.
|
* operation is requested.
|
||||||
*/
|
*/
|
||||||
public ServerBootstrap() {
|
public ServerBootstrap() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -57,7 +57,6 @@ public class HeapChannelBufferFactory extends AbstractChannelBufferFactory {
|
|||||||
* {@link ByteOrder#BIG_ENDIAN}.
|
* {@link ByteOrder#BIG_ENDIAN}.
|
||||||
*/
|
*/
|
||||||
public HeapChannelBufferFactory() {
|
public HeapChannelBufferFactory() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -31,7 +31,6 @@ public abstract class AbstractChannelSink implements ChannelSink {
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
protected AbstractChannelSink() {
|
protected AbstractChannelSink() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -33,7 +33,6 @@ public class ChannelException extends RuntimeException {
|
|||||||
* Creates a new exception.
|
* Creates a new exception.
|
||||||
*/
|
*/
|
||||||
public ChannelException() {
|
public ChannelException() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -35,7 +35,6 @@ public class ChannelHandlerLifeCycleException extends RuntimeException {
|
|||||||
* Creates a new exception.
|
* Creates a new exception.
|
||||||
*/
|
*/
|
||||||
public ChannelHandlerLifeCycleException() {
|
public ChannelHandlerLifeCycleException() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -35,7 +35,6 @@ public class ChannelPipelineException extends ChannelException {
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
public ChannelPipelineException() {
|
public ChannelPipelineException() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -817,7 +817,6 @@ public class DefaultChannelPipeline implements ChannelPipeline {
|
|||||||
|
|
||||||
private static final class DiscardingChannelSink implements ChannelSink {
|
private static final class DiscardingChannelSink implements ChannelSink {
|
||||||
DiscardingChannelSink() {
|
DiscardingChannelSink() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -61,7 +61,6 @@ public class SimpleChannelDownstreamHandler implements ChannelDownstreamHandler
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
public SimpleChannelDownstreamHandler() {
|
public SimpleChannelDownstreamHandler() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -85,7 +85,6 @@ public class SimpleChannelHandler implements ChannelUpstreamHandler, ChannelDown
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
public SimpleChannelHandler() {
|
public SimpleChannelHandler() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -65,7 +65,6 @@ public class SimpleChannelUpstreamHandler implements ChannelUpstreamHandler {
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
public SimpleChannelUpstreamHandler() {
|
public SimpleChannelUpstreamHandler() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -43,7 +43,6 @@ final class LocalClientChannelSink extends AbstractChannelSink {
|
|||||||
private static final InternalLogger logger = InternalLoggerFactory.getInstance(LocalClientChannelSink.class);
|
private static final InternalLogger logger = InternalLoggerFactory.getInstance(LocalClientChannelSink.class);
|
||||||
|
|
||||||
LocalClientChannelSink() {
|
LocalClientChannelSink() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -36,7 +36,6 @@ import org.jboss.netty.channel.MessageEvent;
|
|||||||
final class LocalServerChannelSink extends AbstractChannelSink {
|
final class LocalServerChannelSink extends AbstractChannelSink {
|
||||||
|
|
||||||
LocalServerChannelSink() {
|
LocalServerChannelSink() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -103,7 +103,6 @@ public class HttpTunnelServerChannel extends AbstractServerChannel implements
|
|||||||
HttpTunnelAcceptedChannelFactory {
|
HttpTunnelAcceptedChannelFactory {
|
||||||
|
|
||||||
TunnelCreator() {
|
TunnelCreator() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -258,7 +258,6 @@ class ServerMessageSwitch implements ServerMessageSwitchUpstreamInterface,
|
|||||||
|
|
||||||
private static final class TunnelInfo {
|
private static final class TunnelInfo {
|
||||||
TunnelInfo() {
|
TunnelInfo() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public String tunnelId;
|
public String tunnelId;
|
||||||
|
@ -173,7 +173,6 @@ class NioClientSocketPipelineSink extends AbstractChannelSink {
|
|||||||
private final Queue<Runnable> registerTaskQueue = new LinkedTransferQueue<Runnable>();
|
private final Queue<Runnable> registerTaskQueue = new LinkedTransferQueue<Runnable>();
|
||||||
|
|
||||||
Boss() {
|
Boss() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void register(NioClientSocketChannel channel) {
|
void register(NioClientSocketChannel channel) {
|
||||||
|
@ -260,7 +260,6 @@ class NioDatagramChannel extends AbstractChannel
|
|||||||
private final ThreadLocalBoolean notifying = new ThreadLocalBoolean();
|
private final ThreadLocalBoolean notifying = new ThreadLocalBoolean();
|
||||||
|
|
||||||
WriteRequestQueue() {
|
WriteRequestQueue() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -330,7 +329,6 @@ class NioDatagramChannel extends AbstractChannel
|
|||||||
*/
|
*/
|
||||||
private final class WriteTask implements Runnable {
|
private final class WriteTask implements Runnable {
|
||||||
WriteTask() {
|
WriteTask() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -220,7 +220,6 @@ class NioProviderMetadata {
|
|||||||
private static final class ConstraintLevelAutodetector {
|
private static final class ConstraintLevelAutodetector {
|
||||||
|
|
||||||
ConstraintLevelAutodetector() {
|
ConstraintLevelAutodetector() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int autodetect() {
|
int autodetect() {
|
||||||
|
@ -206,7 +206,6 @@ class NioSocketChannel extends AbstractChannel
|
|||||||
private final ThreadLocalBoolean notifying = new ThreadLocalBoolean();
|
private final ThreadLocalBoolean notifying = new ThreadLocalBoolean();
|
||||||
|
|
||||||
WriteRequestQueue() {
|
WriteRequestQueue() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -265,7 +264,6 @@ class NioSocketChannel extends AbstractChannel
|
|||||||
private final class WriteTask implements Runnable {
|
private final class WriteTask implements Runnable {
|
||||||
|
|
||||||
WriteTask() {
|
WriteTask() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -42,7 +42,6 @@ final class SocketSendBufferPool {
|
|||||||
Preallocation current = new Preallocation(DEFAULT_PREALLOCATION_SIZE);
|
Preallocation current = new Preallocation(DEFAULT_PREALLOCATION_SIZE);
|
||||||
|
|
||||||
SocketSendBufferPool() {
|
SocketSendBufferPool() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
SendBuffer acquire(Object message) {
|
SendBuffer acquire(Object message) {
|
||||||
@ -316,7 +315,6 @@ final class SocketSendBufferPool {
|
|||||||
static final class EmptySendBuffer implements SendBuffer {
|
static final class EmptySendBuffer implements SendBuffer {
|
||||||
|
|
||||||
EmptySendBuffer() {
|
EmptySendBuffer() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -33,7 +33,6 @@ public class CompressionException extends RuntimeException {
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
public CompressionException() {
|
public CompressionException() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -58,6 +58,5 @@ final class ZlibUtil {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private ZlibUtil() {
|
private ZlibUtil() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -194,7 +194,6 @@ abstract class AbstractCodecEmbedder<E> implements CodecEmbedder<E> {
|
|||||||
|
|
||||||
private final class EmbeddedChannelSink implements ChannelSink, ChannelUpstreamHandler {
|
private final class EmbeddedChannelSink implements ChannelSink, ChannelUpstreamHandler {
|
||||||
EmbeddedChannelSink() {
|
EmbeddedChannelSink() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -234,7 +233,6 @@ abstract class AbstractCodecEmbedder<E> implements CodecEmbedder<E> {
|
|||||||
private static final class EmbeddedChannelPipeline extends DefaultChannelPipeline {
|
private static final class EmbeddedChannelPipeline extends DefaultChannelPipeline {
|
||||||
|
|
||||||
EmbeddedChannelPipeline() {
|
EmbeddedChannelPipeline() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -33,7 +33,6 @@ public class CodecEmbedderException extends RuntimeException {
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
public CodecEmbedderException() {
|
public CodecEmbedderException() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -29,7 +29,6 @@ class EmbeddedChannelFactory implements ChannelFactory {
|
|||||||
static final ChannelFactory INSTANCE = new EmbeddedChannelFactory();
|
static final ChannelFactory INSTANCE = new EmbeddedChannelFactory();
|
||||||
|
|
||||||
private EmbeddedChannelFactory() {
|
private EmbeddedChannelFactory() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -34,7 +34,6 @@ public class CorruptedFrameException extends Exception {
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
public CorruptedFrameException() {
|
public CorruptedFrameException() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -34,7 +34,6 @@ public class TooLongFrameException extends Exception {
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
public TooLongFrameException() {
|
public TooLongFrameException() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -31,7 +31,6 @@ final class CaseIgnoringComparator implements Comparator<String>, Serializable {
|
|||||||
static final CaseIgnoringComparator INSTANCE = new CaseIgnoringComparator();
|
static final CaseIgnoringComparator INSTANCE = new CaseIgnoringComparator();
|
||||||
|
|
||||||
private CaseIgnoringComparator() {
|
private CaseIgnoringComparator() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -87,7 +87,6 @@ public class HttpClientCodec implements ChannelUpstreamHandler,
|
|||||||
private final class Encoder extends HttpRequestEncoder {
|
private final class Encoder extends HttpRequestEncoder {
|
||||||
|
|
||||||
Encoder() {
|
Encoder() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -72,7 +72,6 @@ class HttpCodecUtil {
|
|||||||
static final Charset DEFAULT_CHARSET = CharsetUtil.UTF_8;
|
static final Charset DEFAULT_CHARSET = CharsetUtil.UTF_8;
|
||||||
|
|
||||||
private HttpCodecUtil() {
|
private HttpCodecUtil() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void validateHeaderName(String name) {
|
static void validateHeaderName(String name) {
|
||||||
|
@ -54,7 +54,6 @@ public abstract class HttpContentDecoder extends SimpleChannelUpstreamHandler {
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
protected HttpContentDecoder() {
|
protected HttpContentDecoder() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -61,7 +61,6 @@ public abstract class HttpContentEncoder extends SimpleChannelHandler {
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
protected HttpContentEncoder() {
|
protected HttpContentEncoder() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -310,7 +310,6 @@ public class HttpHeaders {
|
|||||||
public static final String WWW_AUTHENTICATE = "WWW-Authenticate";
|
public static final String WWW_AUTHENTICATE = "WWW-Authenticate";
|
||||||
|
|
||||||
private Names() {
|
private Names() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -455,7 +454,6 @@ public class HttpHeaders {
|
|||||||
public static final String WEBSOCKET = "WebSocket";
|
public static final String WEBSOCKET = "WebSocket";
|
||||||
|
|
||||||
private Values() {
|
private Values() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -59,7 +59,6 @@ public abstract class HttpMessageEncoder extends OneToOneEncoder {
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
protected HttpMessageEncoder() {
|
protected HttpMessageEncoder() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -119,7 +119,6 @@ public class HttpPostBodyUtil {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private HttpPostBodyUtil() {
|
private HttpPostBodyUtil() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//Some commons methods between HttpPostRequestDecoder and HttpMessageDecoder
|
//Some commons methods between HttpPostRequestDecoder and HttpMessageDecoder
|
||||||
|
@ -1397,7 +1397,6 @@ public class HttpPostRequestDecoder {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public NotEnoughDataDecoderException() {
|
public NotEnoughDataDecoderException() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -1453,7 +1452,6 @@ public class HttpPostRequestDecoder {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public ErrorDataDecoderException() {
|
public ErrorDataDecoderException() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -1495,7 +1493,6 @@ public class HttpPostRequestDecoder {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public IncompatibleDataDecoderException() {
|
public IncompatibleDataDecoderException() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -965,7 +965,6 @@ public class HttpPostRequestEncoder implements ChunkedInput {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public ErrorDataEncoderException() {
|
public ErrorDataEncoderException() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -65,7 +65,6 @@ public class HttpRequestDecoder extends HttpMessageDecoder {
|
|||||||
* {@code maxChunkSize (8192)}.
|
* {@code maxChunkSize (8192)}.
|
||||||
*/
|
*/
|
||||||
public HttpRequestDecoder() {
|
public HttpRequestDecoder() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -34,7 +34,6 @@ public class HttpRequestEncoder extends HttpMessageEncoder {
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
public HttpRequestEncoder() {
|
public HttpRequestEncoder() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -94,7 +94,6 @@ public class HttpResponseDecoder extends HttpMessageDecoder {
|
|||||||
* {@code maxChunkSize (8192)}.
|
* {@code maxChunkSize (8192)}.
|
||||||
*/
|
*/
|
||||||
public HttpResponseDecoder() {
|
public HttpResponseDecoder() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -34,7 +34,6 @@ public class HttpResponseEncoder extends HttpMessageEncoder {
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
public HttpResponseEncoder() {
|
public HttpResponseEncoder() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -57,7 +57,6 @@ public abstract class OneToOneDecoder implements ChannelUpstreamHandler {
|
|||||||
* Creates a new instance with the current system character set.
|
* Creates a new instance with the current system character set.
|
||||||
*/
|
*/
|
||||||
protected OneToOneDecoder() {
|
protected OneToOneDecoder() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -51,7 +51,6 @@ import org.jboss.netty.handler.codec.frame.Delimiters;
|
|||||||
public abstract class OneToOneEncoder implements ChannelDownstreamHandler {
|
public abstract class OneToOneEncoder implements ChannelDownstreamHandler {
|
||||||
|
|
||||||
protected OneToOneEncoder() {
|
protected OneToOneEncoder() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -53,7 +53,6 @@ public class ProtobufVarint32FrameDecoder extends FrameDecoder {
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
public ProtobufVarint32FrameDecoder() {
|
public ProtobufVarint32FrameDecoder() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -52,7 +52,6 @@ public class ProtobufVarint32LengthFieldPrepender extends OneToOneEncoder {
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
public ProtobufVarint32LengthFieldPrepender() {
|
public ProtobufVarint32LengthFieldPrepender() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -35,7 +35,6 @@ public class UnreplayableOperationException extends
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
public UnreplayableOperationException() {
|
public UnreplayableOperationException() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -218,7 +218,6 @@ public final class RtspHeaders {
|
|||||||
public static final String WWW_AUTHENTICATE = HttpHeaders.Names.WWW_AUTHENTICATE;
|
public static final String WWW_AUTHENTICATE = HttpHeaders.Names.WWW_AUTHENTICATE;
|
||||||
|
|
||||||
private Names() {
|
private Names() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -400,11 +399,9 @@ public final class RtspHeaders {
|
|||||||
public static final String URL = "url";
|
public static final String URL = "url";
|
||||||
|
|
||||||
protected Values() {
|
protected Values() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private RtspHeaders() {
|
private RtspHeaders() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -40,7 +40,6 @@ public abstract class RtspMessageEncoder extends HttpMessageEncoder {
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
protected RtspMessageEncoder() {
|
protected RtspMessageEncoder() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -141,6 +141,5 @@ public final class RtspMethods {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private RtspMethods() {
|
private RtspMethods() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -61,7 +61,6 @@ public class RtspRequestDecoder extends RtspMessageDecoder {
|
|||||||
* {@code maxContentLength (8192)}.
|
* {@code maxContentLength (8192)}.
|
||||||
*/
|
*/
|
||||||
public RtspRequestDecoder() {
|
public RtspRequestDecoder() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -62,7 +62,6 @@ public class RtspResponseDecoder extends RtspMessageDecoder {
|
|||||||
* {@code maxContentLength (8192)}.
|
* {@code maxContentLength (8192)}.
|
||||||
*/
|
*/
|
||||||
public RtspResponseDecoder() {
|
public RtspResponseDecoder() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -295,6 +295,5 @@ public final class RtspResponseStatuses {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private RtspResponseStatuses() {
|
private RtspResponseStatuses() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -54,6 +54,5 @@ public final class RtspVersions {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private RtspVersions() {
|
private RtspVersions() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -500,7 +500,6 @@ public class MemoryAwareThreadPoolExecutor extends ThreadPoolExecutor {
|
|||||||
|
|
||||||
private static final class NewThreadRunsPolicy implements RejectedExecutionHandler {
|
private static final class NewThreadRunsPolicy implements RejectedExecutionHandler {
|
||||||
NewThreadRunsPolicy() {
|
NewThreadRunsPolicy() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -537,8 +536,7 @@ public class MemoryAwareThreadPoolExecutor extends ThreadPoolExecutor {
|
|||||||
private int waiters;
|
private int waiters;
|
||||||
|
|
||||||
Limiter(long limit) {
|
Limiter(long limit) {
|
||||||
super();
|
this.limit = limit;
|
||||||
this.limit = limit;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
synchronized void increase(long amount) {
|
synchronized void increase(long amount) {
|
||||||
|
@ -287,7 +287,6 @@ public class OrderedMemoryAwareThreadPoolExecutor extends
|
|||||||
private final LinkedList<Runnable> tasks = new LinkedList<Runnable>();
|
private final LinkedList<Runnable> tasks = new LinkedList<Runnable>();
|
||||||
|
|
||||||
ChildExecutor() {
|
ChildExecutor() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -82,7 +82,6 @@ public class IpFilterRuleHandler extends IpFilteringHandlerImpl
|
|||||||
*/
|
*/
|
||||||
public IpFilterRuleHandler()
|
public IpFilterRuleHandler()
|
||||||
{
|
{
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Below are methods directly inspired from CopyOnWriteArrayList methods
|
// Below are methods directly inspired from CopyOnWriteArrayList methods
|
||||||
|
@ -59,8 +59,7 @@ public class IpFilterRuleList extends ArrayList<IpFilterRule>
|
|||||||
*/
|
*/
|
||||||
public IpFilterRuleList(String rules)
|
public IpFilterRuleList(String rules)
|
||||||
{
|
{
|
||||||
super();
|
parseRules(rules);
|
||||||
parseRules(rules);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void parseRules(String rules)
|
private void parseRules(String rules)
|
||||||
|
@ -39,8 +39,7 @@ public class IpSubnetFilterRule extends IpSubnet implements IpFilterRule
|
|||||||
*/
|
*/
|
||||||
public IpSubnetFilterRule(boolean allow)
|
public IpSubnetFilterRule(boolean allow)
|
||||||
{
|
{
|
||||||
super();
|
isAllowRule = allow;
|
||||||
isAllowRule = allow;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -36,8 +36,7 @@ public class IpV4SubnetFilterRule extends IpV4Subnet implements IpFilterRule
|
|||||||
*/
|
*/
|
||||||
public IpV4SubnetFilterRule(boolean allow)
|
public IpV4SubnetFilterRule(boolean allow)
|
||||||
{
|
{
|
||||||
super();
|
isAllowRule = allow;
|
||||||
isAllowRule = allow;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -34,7 +34,6 @@ public class BlockingReadTimeoutException extends InterruptedIOException {
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
public BlockingReadTimeoutException() {
|
public BlockingReadTimeoutException() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -443,7 +443,6 @@ public class IdleStateHandler extends SimpleChannelUpstreamHandler
|
|||||||
|
|
||||||
private static final class State {
|
private static final class State {
|
||||||
State() {
|
State() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
volatile Timeout readerIdleTimeout;
|
volatile Timeout readerIdleTimeout;
|
||||||
|
@ -31,7 +31,6 @@ public class ReadTimeoutException extends TimeoutException {
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
public ReadTimeoutException() {
|
public ReadTimeoutException() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -259,7 +259,6 @@ public class ReadTimeoutHandler extends SimpleChannelUpstreamHandler
|
|||||||
volatile long lastReadTime = System.currentTimeMillis();
|
volatile long lastReadTime = System.currentTimeMillis();
|
||||||
|
|
||||||
State() {
|
State() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -33,7 +33,6 @@ public class TimeoutException extends ChannelException {
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
public TimeoutException() {
|
public TimeoutException() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -32,7 +32,6 @@ public class WriteTimeoutException extends TimeoutException {
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
public WriteTimeoutException() {
|
public WriteTimeoutException() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -154,8 +154,7 @@ public abstract class AbstractTrafficShapingHandler extends
|
|||||||
*/
|
*/
|
||||||
public AbstractTrafficShapingHandler(Executor executor, long writeLimit,
|
public AbstractTrafficShapingHandler(Executor executor, long writeLimit,
|
||||||
long readLimit, long checkInterval) {
|
long readLimit, long checkInterval) {
|
||||||
super();
|
init(new DefaultObjectSizeEstimator(), executor, writeLimit, readLimit,
|
||||||
init(new DefaultObjectSizeEstimator(), executor, writeLimit, readLimit,
|
|
||||||
checkInterval);
|
checkInterval);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -178,8 +177,7 @@ public abstract class AbstractTrafficShapingHandler extends
|
|||||||
public AbstractTrafficShapingHandler(
|
public AbstractTrafficShapingHandler(
|
||||||
ObjectSizeEstimator objectSizeEstimator, Executor executor,
|
ObjectSizeEstimator objectSizeEstimator, Executor executor,
|
||||||
long writeLimit, long readLimit, long checkInterval) {
|
long writeLimit, long readLimit, long checkInterval) {
|
||||||
super();
|
init(objectSizeEstimator, executor, writeLimit, readLimit,
|
||||||
init(objectSizeEstimator, executor, writeLimit, readLimit,
|
|
||||||
checkInterval);
|
checkInterval);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -195,8 +193,7 @@ public abstract class AbstractTrafficShapingHandler extends
|
|||||||
*/
|
*/
|
||||||
public AbstractTrafficShapingHandler(Executor executor, long writeLimit,
|
public AbstractTrafficShapingHandler(Executor executor, long writeLimit,
|
||||||
long readLimit) {
|
long readLimit) {
|
||||||
super();
|
init(new DefaultObjectSizeEstimator(), executor, writeLimit, readLimit,
|
||||||
init(new DefaultObjectSizeEstimator(), executor, writeLimit, readLimit,
|
|
||||||
DEFAULT_CHECK_INTERVAL);
|
DEFAULT_CHECK_INTERVAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -216,8 +213,7 @@ public abstract class AbstractTrafficShapingHandler extends
|
|||||||
public AbstractTrafficShapingHandler(
|
public AbstractTrafficShapingHandler(
|
||||||
ObjectSizeEstimator objectSizeEstimator, Executor executor,
|
ObjectSizeEstimator objectSizeEstimator, Executor executor,
|
||||||
long writeLimit, long readLimit) {
|
long writeLimit, long readLimit) {
|
||||||
super();
|
init(objectSizeEstimator, executor, writeLimit, readLimit,
|
||||||
init(objectSizeEstimator, executor, writeLimit, readLimit,
|
|
||||||
DEFAULT_CHECK_INTERVAL);
|
DEFAULT_CHECK_INTERVAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -228,8 +224,7 @@ public abstract class AbstractTrafficShapingHandler extends
|
|||||||
* created for instance like Executors.newCachedThreadPool
|
* created for instance like Executors.newCachedThreadPool
|
||||||
*/
|
*/
|
||||||
public AbstractTrafficShapingHandler(Executor executor) {
|
public AbstractTrafficShapingHandler(Executor executor) {
|
||||||
super();
|
init(new DefaultObjectSizeEstimator(), executor, 0, 0,
|
||||||
init(new DefaultObjectSizeEstimator(), executor, 0, 0,
|
|
||||||
DEFAULT_CHECK_INTERVAL);
|
DEFAULT_CHECK_INTERVAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -244,8 +239,7 @@ public abstract class AbstractTrafficShapingHandler extends
|
|||||||
*/
|
*/
|
||||||
public AbstractTrafficShapingHandler(
|
public AbstractTrafficShapingHandler(
|
||||||
ObjectSizeEstimator objectSizeEstimator, Executor executor) {
|
ObjectSizeEstimator objectSizeEstimator, Executor executor) {
|
||||||
super();
|
init(objectSizeEstimator, executor, 0, 0, DEFAULT_CHECK_INTERVAL);
|
||||||
init(objectSizeEstimator, executor, 0, 0, DEFAULT_CHECK_INTERVAL);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -258,8 +252,7 @@ public abstract class AbstractTrafficShapingHandler extends
|
|||||||
* channels or 0 if no stats are to be computed
|
* channels or 0 if no stats are to be computed
|
||||||
*/
|
*/
|
||||||
public AbstractTrafficShapingHandler(Executor executor, long checkInterval) {
|
public AbstractTrafficShapingHandler(Executor executor, long checkInterval) {
|
||||||
super();
|
init(new DefaultObjectSizeEstimator(), executor, 0, 0, checkInterval);
|
||||||
init(new DefaultObjectSizeEstimator(), executor, 0, 0, checkInterval);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -277,8 +270,7 @@ public abstract class AbstractTrafficShapingHandler extends
|
|||||||
public AbstractTrafficShapingHandler(
|
public AbstractTrafficShapingHandler(
|
||||||
ObjectSizeEstimator objectSizeEstimator, Executor executor,
|
ObjectSizeEstimator objectSizeEstimator, Executor executor,
|
||||||
long checkInterval) {
|
long checkInterval) {
|
||||||
super();
|
init(objectSizeEstimator, executor, 0, 0, checkInterval);
|
||||||
init(objectSizeEstimator, executor, 0, 0, checkInterval);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -30,7 +30,6 @@ public abstract class AbstractInternalLogger implements InternalLogger {
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*/
|
*/
|
||||||
protected AbstractInternalLogger() {
|
protected AbstractInternalLogger() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -45,6 +45,5 @@ public class ExternalResourceUtil {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private ExternalResourceUtil() {
|
private ExternalResourceUtil() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -362,7 +362,6 @@ public class HashedWheelTimer implements Timer {
|
|||||||
private long tick;
|
private long tick;
|
||||||
|
|
||||||
Worker() {
|
Worker() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -51,6 +51,5 @@ public final class DeadLockProofWorker {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private DeadLockProofWorker() {
|
private DeadLockProofWorker() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -119,6 +119,5 @@ public class ExecutorUtil {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private ExecutorUtil() {
|
private ExecutorUtil() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1031,7 +1031,6 @@ public class LinkedTransferQueue<E> extends AbstractQueue<E>
|
|||||||
* Creates an initially empty {@code LinkedTransferQueue}.
|
* Creates an initially empty {@code LinkedTransferQueue}.
|
||||||
*/
|
*/
|
||||||
public LinkedTransferQueue() {
|
public LinkedTransferQueue() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -90,7 +90,6 @@ final class ThreadLocalRandom extends Random {
|
|||||||
* invokes setSeed exactly once to initialize.
|
* invokes setSeed exactly once to initialize.
|
||||||
*/
|
*/
|
||||||
ThreadLocalRandom() {
|
ThreadLocalRandom() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -207,7 +207,6 @@ public abstract class AbstractSocketServerBootstrapTest {
|
|||||||
final StringBuffer result = new StringBuffer();
|
final StringBuffer result = new StringBuffer();
|
||||||
|
|
||||||
ParentChannelHandler() {
|
ParentChannelHandler() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -113,7 +113,6 @@ public class CompleteChannelFutureTest {
|
|||||||
private static final long serialVersionUID = 7059276744882005047L;
|
private static final long serialVersionUID = 7059276744882005047L;
|
||||||
|
|
||||||
ExpectedError() {
|
ExpectedError() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -153,7 +153,6 @@ public abstract class AbstractSocketEchoTest {
|
|||||||
volatile int counter;
|
volatile int counter;
|
||||||
|
|
||||||
EchoHandler() {
|
EchoHandler() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -97,7 +97,6 @@ public class NioServerSocketShutdownTimeTest {
|
|||||||
volatile boolean closed;
|
volatile boolean closed;
|
||||||
|
|
||||||
DummyHandler() {
|
DummyHandler() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -147,7 +147,6 @@ public class HttpTunnelServerChannelSinkTest {
|
|||||||
private final class ExceptionCatcher extends SimpleChannelUpstreamHandler {
|
private final class ExceptionCatcher extends SimpleChannelUpstreamHandler {
|
||||||
|
|
||||||
ExceptionCatcher() {
|
ExceptionCatcher() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -155,7 +155,6 @@ public abstract class AbstractSocketFixedLengthEchoTest {
|
|||||||
volatile int counter;
|
volatile int counter;
|
||||||
|
|
||||||
EchoHandler() {
|
EchoHandler() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -57,7 +57,6 @@ public class ReplayingDecoderTest {
|
|||||||
private static final class LineDecoder extends ReplayingDecoder<VoidEnum> {
|
private static final class LineDecoder extends ReplayingDecoder<VoidEnum> {
|
||||||
|
|
||||||
LineDecoder() {
|
LineDecoder() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -163,7 +163,6 @@ public abstract class AbstractSocketCompatibleObjectStreamEchoTest {
|
|||||||
volatile int counter;
|
volatile int counter;
|
||||||
|
|
||||||
EchoHandler() {
|
EchoHandler() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -162,7 +162,6 @@ public abstract class AbstractSocketObjectStreamEchoTest {
|
|||||||
volatile int counter;
|
volatile int counter;
|
||||||
|
|
||||||
EchoHandler() {
|
EchoHandler() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -168,7 +168,6 @@ public abstract class AbstractSocketStringEchoTest {
|
|||||||
volatile int counter;
|
volatile int counter;
|
||||||
|
|
||||||
EchoHandler() {
|
EchoHandler() {
|
||||||
super();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user