You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by re...@apache.org on 2023/07/29 19:28:16 UTC

[cxf] branch 3.6.x-fixes updated: Fix checkstyle violations

This is an automated email from the ASF dual-hosted git repository.

reta pushed a commit to branch 3.6.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/3.6.x-fixes by this push:
     new 00b6fe804d Fix checkstyle violations
00b6fe804d is described below

commit 00b6fe804da2cdff8a1641e9aa20c6cab713fef6
Author: Andriy Redko <dr...@gmail.com>
AuthorDate: Sat Jul 29 15:27:59 2023 -0400

    Fix checkstyle violations
---
 .../cxf/transport/http/netty/server/NettyHttpDestinationTest.java      | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/rt/transports/http-netty/netty-server/src/test/java/org/apache/cxf/transport/http/netty/server/NettyHttpDestinationTest.java b/rt/transports/http-netty/netty-server/src/test/java/org/apache/cxf/transport/http/netty/server/NettyHttpDestinationTest.java
index 09c79a7487..67349082ba 100644
--- a/rt/transports/http-netty/netty-server/src/test/java/org/apache/cxf/transport/http/netty/server/NettyHttpDestinationTest.java
+++ b/rt/transports/http-netty/netty-server/src/test/java/org/apache/cxf/transport/http/netty/server/NettyHttpDestinationTest.java
@@ -668,7 +668,8 @@ public class NettyHttpDestinationTest {
 
                 when(request.getHeaderNames()).thenReturn(Utils.enumeration(headerNames));
                 when(request.getHeaders("content-type")).thenReturn(Utils.enumeration(contentType));
-                when(request.getHeaders(NettyHttpDestinationTest.AUTH_HEADER)).thenReturn(Utils.enumeration(authHeader));
+                when(request.getHeaders(NettyHttpDestinationTest.AUTH_HEADER))
+                    .thenReturn(Utils.enumeration(authHeader));
 
                 when(request.getInputStream()).thenReturn(is);