Skip to content

Commit d446748

Browse files
committed
Fix checkstyle
Signed-off-by: raccoonback <[email protected]>
1 parent 2aea90f commit d446748

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

reactor-netty-core/src/main/java/reactor/netty/NettyPipeline.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2011-2024 VMware, Inc. or its affiliates, All Rights Reserved.
2+
* Copyright (c) 2011-2025 VMware, Inc. or its affiliates, All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

reactor-netty-http/src/main/java/reactor/netty/http/server/HttpTrafficHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,7 @@ static boolean isMultipart(HttpResponse response) {
699699

700700
private void setupIdleTimeoutHandler(ChannelPipeline pipeline) {
701701
Http2FrameCodec httpCodec = pipeline.get(Http2FrameCodec.class);
702-
if(httpCodec != null) {
702+
if (httpCodec != null) {
703703
IdleTimeoutHandler.addIdleTimeoutHandler(
704704
pipeline,
705705
idleTimeout,

0 commit comments

Comments
 (0)