Fix a build failure due to a dependency problem / Fix checkstyle errors
This commit is contained in:
parent
4831eb49da
commit
b1a156d3f2
@ -43,7 +43,6 @@
|
|||||||
<groupId>${project.groupId}</groupId>
|
<groupId>${project.groupId}</groupId>
|
||||||
<artifactId>netty-codec</artifactId>
|
<artifactId>netty-codec</artifactId>
|
||||||
<version>${project.version}</version>
|
<version>${project.version}</version>
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ package io.netty.handler.timeout;
|
|||||||
* A {@link TimeoutException} raised by {@link ReadTimeoutHandler} when no data
|
* A {@link TimeoutException} raised by {@link ReadTimeoutHandler} when no data
|
||||||
* was read within a certain period of time.
|
* 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;
|
private static final long serialVersionUID = 169287984113283421L;
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ package io.netty.handler.timeout;
|
|||||||
* A {@link TimeoutException} raised by {@link WriteTimeoutHandler} when no data
|
* A {@link TimeoutException} raised by {@link WriteTimeoutHandler} when no data
|
||||||
* was written within a certain period of time.
|
* 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;
|
private static final long serialVersionUID = -144786655770296065L;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user