Fix a build failure due to a dependency problem / Fix checkstyle errors

This commit is contained in:
Trustin Lee 2012-06-07 09:15:53 +09:00
parent 4831eb49da
commit b1a156d3f2
6 changed files with 7 additions and 8 deletions

View File

@ -43,7 +43,6 @@
<groupId>${project.groupId}</groupId>
<artifactId>netty-codec</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

View File

@ -19,7 +19,7 @@ package io.netty.handler.timeout;
* A {@link TimeoutException} raised by {@link ReadTimeoutHandler} when no data
* was read within a certain period of time.
*/
public class ReadTimeoutException extends TimeoutException {
public final class ReadTimeoutException extends TimeoutException {
private static final long serialVersionUID = 169287984113283421L;

View File

@ -19,7 +19,7 @@ package io.netty.handler.timeout;
* A {@link TimeoutException} raised by {@link WriteTimeoutHandler} when no data
* was written within a certain period of time.
*/
public class WriteTimeoutException extends TimeoutException {
public final class WriteTimeoutException extends TimeoutException {
private static final long serialVersionUID = -144786655770296065L;