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 2021/04/19 22:39:37 UTC

[cxf] branch master updated: Update Checkstyle to 8.41.1 (#773)

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

reta pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/master by this push:
     new 5cbed0a  Update Checkstyle to 8.41.1 (#773)
5cbed0a is described below

commit 5cbed0aaa0160a8588cca6d8a2290a61bba2cdbf
Author: Andriy Redko <dr...@gmail.com>
AuthorDate: Mon Apr 19 18:39:26 2021 -0400

    Update Checkstyle to 8.41.1 (#773)
---
 parent/pom.xml                                                      | 6 +++---
 .../client/src/main/java/org/apache/cxf/jaxrs/client/WebClient.java | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index 2ada479..0cc6486 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -382,11 +382,11 @@
                             <artifactId>cxf-buildtools</artifactId>
                             <version>${cxf.build-utils.version}</version>
                         </dependency>
-                        <!--<dependency>
+                        <dependency>
                             <groupId>com.puppycrawl.tools</groupId>
                             <artifactId>checkstyle</artifactId>
-                            <version>8.35</version>
-                        </dependency>-->
+                            <version>8.41.1</version>
+                        </dependency>
                     </dependencies>
                     <configuration>
                         <encoding>UTF-8</encoding>
diff --git a/rt/rs/client/src/main/java/org/apache/cxf/jaxrs/client/WebClient.java b/rt/rs/client/src/main/java/org/apache/cxf/jaxrs/client/WebClient.java
index 34c9078..eaedd4b 100644
--- a/rt/rs/client/src/main/java/org/apache/cxf/jaxrs/client/WebClient.java
+++ b/rt/rs/client/src/main/java/org/apache/cxf/jaxrs/client/WebClient.java
@@ -1309,7 +1309,7 @@ public class WebClient extends AbstractClient {
     }
 
     @SuppressWarnings({
-     "rawtypes", "unchecked"
+        "rawtypes", "unchecked"
     })
     public <T extends RxInvoker> T rx(Class<T> rxCls, ExecutorService executorService) {
         if (CompletionStageRxInvoker.class.isAssignableFrom(rxCls)) {