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 78b1dc0 Camel-Core: Fixed CS
78b1dc0 is described below
commit 78b1dc06372142af7eda5b9e76550bdbbfa47ca8
Author: Andrea Cosentino <[email protected]>
AuthorDate: Mon Mar 16 12:47:45 2020 +0100
Camel-Core: Fixed CS
---
.../org/apache/camel/support/PropertyBindingSupportConfigurerTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/core/camel-core/src/test/java/org/apache/camel/support/PropertyBindingSupportConfigurerTest.java
b/core/camel-core/src/test/java/org/apache/camel/support/PropertyBindingSupportConfigurerTest.java
index 8edf23b..de5cf00 100644
---
a/core/camel-core/src/test/java/org/apache/camel/support/PropertyBindingSupportConfigurerTest.java
+++
b/core/camel-core/src/test/java/org/apache/camel/support/PropertyBindingSupportConfigurerTest.java
@@ -206,7 +206,7 @@ public class PropertyBindingSupportConfigurerTest extends
ContextTestSupport {
@Override
public boolean configure(CamelContext camelContext, Object target,
String name, Object value, boolean ignoreCase) {
name = name.toLowerCase(Locale.US);
- name = name.replaceAll("-","");
+ name = name.replaceAll("-", "");
if (target instanceof Bar) {
Bar bar = (Bar) target;
if ("age".equals(name)) {