Fixed some checkstyle errors

This commit is contained in:
Trustin Lee 2012-06-04 13:43:02 -07:00
parent 1eced1e9e3
commit c2e65016fd
9 changed files with 32 additions and 8 deletions

View File

@ -195,7 +195,7 @@ public class ChannelBufferInputStream extends InputStream implements DataInput {
lineBuf.append((char) b);
}
if (lineBuf.length() > 0 ) {
if (lineBuf.length() > 0) {
while (lineBuf.charAt(lineBuf.length() - 1) == '\r') {
lineBuf.setLength(lineBuf.length() - 1);
}

View File

@ -0,0 +1,24 @@
/*
* Copyright 2012 The Netty Project
*
* The Netty Project licenses this file to you under the Apache License,
* version 2.0 (the "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
/**
* The helper classes with fluent API which enable an easy implementation of
* typical client side and server side channel initialization.
*
* @apiviz.landmark
* @apiviz.exclude ^io\.netty\.util\.
*/
package io.netty.bootstrap;

View File

@ -746,7 +746,7 @@ public abstract class AbstractChannel extends DefaultAttributeMap implements Cha
}
}
static abstract class FlushCheckpoint {
abstract static class FlushCheckpoint {
abstract long flushCheckpoint();
abstract void flushCheckpoint(long checkpoint);
abstract ChannelFuture future();

View File

@ -25,7 +25,7 @@ public class BlockingOperationException extends IllegalStateException {
private static final long serialVersionUID = 2462223247762460301L;
public BlockingOperationException() {}
public BlockingOperationException() { }
public BlockingOperationException(String s) {
super(s);

View File

@ -178,4 +178,4 @@ public class CombinedChannelHandler extends AbstractChannelHandler
ChannelOutboundHandlerContext<Object> ctx, ChannelFuture future) throws Exception {
out.flush(ctx, future);
}
}
}

View File

@ -588,4 +588,4 @@ final class DefaultChannelHandlerContext extends DefaultAttributeMap implements
}
}
}
}
}

View File

@ -503,7 +503,7 @@ public abstract class SingleThreadEventExecutor extends AbstractExecutorService
private final long id = nextTaskId.getAndIncrement();
private long deadlineNanos;
/** 0 - no repeat, >0 - repeat at fixed rate, <0 - repeat with fixed delay */
/* 0 - no repeat, >0 - repeat at fixed rate, <0 - repeat with fixed delay */
private final long periodNanos;
ScheduledFutureTask(Runnable runnable, V result, long nanoTime) {

View File

@ -22,7 +22,7 @@ import java.util.concurrent.ThreadFactory;
public class LocalEventLoop extends MultithreadEventLoop {
public LocalEventLoop() {}
public LocalEventLoop() { }
public LocalEventLoop(int nThreads) {
super(nThreads);

View File

@ -23,7 +23,7 @@ import java.util.concurrent.ThreadFactory;
public class NioEventLoop extends MultithreadEventLoop {
public NioEventLoop() {}
public NioEventLoop() { }
public NioEventLoop(int nThreads) {
super(nThreads);