You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by co...@apache.org on 2021/02/24 07:53:03 UTC

[cxf] 02/02: CXF-3891 - Checkstyle fix

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

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

commit 0712c1daffa46eb7df27caa41a95a718a660191d
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Wed Feb 24 07:50:03 2021 +0000

    CXF-3891 - Checkstyle fix
    
    (cherry picked from commit 56a84e00497b916a203d828bc731c8e70406a0f9)
---
 .../java/org/apache/cxf/ext/logging/MaskSensitiveHelperTest.java  | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/rt/features/logging/src/test/java/org/apache/cxf/ext/logging/MaskSensitiveHelperTest.java b/rt/features/logging/src/test/java/org/apache/cxf/ext/logging/MaskSensitiveHelperTest.java
index 9e74876..fae7bfc 100644
--- a/rt/features/logging/src/test/java/org/apache/cxf/ext/logging/MaskSensitiveHelperTest.java
+++ b/rt/features/logging/src/test/java/org/apache/cxf/ext/logging/MaskSensitiveHelperTest.java
@@ -61,11 +61,11 @@ public class MaskSensitiveHelperTest {
             "\"user\":\"testUser\", \"password\": \"XXX\"";
     
     private static final String SENSITIVE_LOGGING_MULTIPLE_ELEMENT_XML =
-        "<item><user>testUser1</user><password myAttribute=\"test\">my secret password 1</password></item>"+
-            "<item><user>testUser2</user><password>my secret password 2</password></item>";
+        "<item><user>testUser1</user><password myAttribute=\"test\">my secret password 1</password></item>"
+            + "<item><user>testUser2</user><password>my secret password 2</password></item>";
     private static final String MASKED_LOGGING_MULTIPLE_ELEMENT_XML =
-        "<item><user>testUser1</user><password myAttribute=\"test\">XXX</password></item>"+
-            "<item><user>testUser2</user><password>XXX</password></item>";
+        "<item><user>testUser1</user><password myAttribute=\"test\">XXX</password></item>"
+            + "<item><user>testUser2</user><password>XXX</password></item>";
 
     private static final Set<String> SENSITIVE_ELEMENTS = new HashSet(Arrays.asList("password"));
     private static final String APPLICATION_XML = "application/xml";