This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push:
new 1061ae8 Fixed CS
1061ae8 is described below
commit 1061ae80b68aa01fae6ba758430b6983cbbd055a
Author: Andrea Cosentino <[email protected]>
AuthorDate: Thu Mar 25 08:17:36 2021 +0100
Fixed CS
---
.../test/java/org/apache/camel/util/UnsafeCharactersEncoderTest.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/core/camel-core/src/test/java/org/apache/camel/util/UnsafeCharactersEncoderTest.java
b/core/camel-core/src/test/java/org/apache/camel/util/UnsafeCharactersEncoderTest.java
index a27a6ce..d229a7f 100644
---
a/core/camel-core/src/test/java/org/apache/camel/util/UnsafeCharactersEncoderTest.java
+++
b/core/camel-core/src/test/java/org/apache/camel/util/UnsafeCharactersEncoderTest.java
@@ -89,8 +89,8 @@ public class UnsafeCharactersEncoderTest {
}
@Test
- public void testPasswordEncodingInRawMode(){
- String password= "RAW(%j#7%c6i)";
+ public void testPasswordEncodingInRawMode() {
+ String password = "RAW(%j#7%c6i)";
String result = UnsafeUriCharactersEncoder.encode(password, true);
// remove RAW
result = result.substring(4);