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 b1b946d Fixing Checkstyle violations
b1b946d is described below
commit b1b946d7a927b6d174bbb15c64fe4634d093df93
Author: Andriy Redko <[email protected]>
AuthorDate: Tue May 4 19:18:31 2021 -0400
Fixing Checkstyle violations
---
.../main/java/org/apache/cxf/common/spi/NamespaceClassGenerator.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/core/src/main/java/org/apache/cxf/common/spi/NamespaceClassGenerator.java
b/core/src/main/java/org/apache/cxf/common/spi/NamespaceClassGenerator.java
index 23a9a4b..8a2b0c5 100644
--- a/core/src/main/java/org/apache/cxf/common/spi/NamespaceClassGenerator.java
+++ b/core/src/main/java/org/apache/cxf/common/spi/NamespaceClassGenerator.java
@@ -76,7 +76,8 @@ public class NamespaceClassGenerator extends
ClassGeneratorClassLoader implement
}
}
if (cls == null) {
- LOG.log(Level.INFO, "Could not create a NamespaceMapper compatible
with Marshaller class " + mcls.getName(), t);
+ LOG.log(Level.INFO, "Could not create a NamespaceMapper compatible
with Marshaller class "
+ + mcls.getName(), t);
}
return cls;
}