You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ol...@apache.org on 2021/09/09 15:23:02 UTC

[sling-org-apache-sling-commons-clam] 22/25: [checkstyle] (modifier) ClassMemberImpliedModifier

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

olli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-commons-clam.git

commit a2a40ab4a6fe17048f7d8a3c54a3972fa6cf2a0d
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Thu Sep 9 15:10:33 2021 +0200

    [checkstyle] (modifier) ClassMemberImpliedModifier
---
 pmd-exclude.properties                               | 20 ++++++++++++++++++++
 pom.xml                                              |  1 +
 .../org/apache/sling/commons/clam/ScanResult.java    |  2 +-
 3 files changed, 22 insertions(+), 1 deletion(-)

diff --git a/pmd-exclude.properties b/pmd-exclude.properties
new file mode 100644
index 0000000..99d778e
--- /dev/null
+++ b/pmd-exclude.properties
@@ -0,0 +1,20 @@
+################################################################################
+#
+#    Licensed to the Apache Software Foundation (ASF) under one or more
+#    contributor license agreements.  See the NOTICE file distributed with
+#    this work for additional information regarding copyright ownership.
+#    The ASF licenses this file to You under the Apache License, Version 2.0
+#    (the "License"); you may not use this file except in compliance with
+#    the License.  You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#    Unless required by applicable law or agreed to in writing, software
+#    distributed under the License is distributed on an "AS IS" BASIS,
+#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#    See the License for the specific language governing permissions and
+#    limitations under the License.
+#
+################################################################################
+org.apache.sling.commons.clam.ClamService=UnnecessaryModifier
+org.apache.sling.commons.clam.ScanResult$Status=UnnecessaryModifier
diff --git a/pom.xml b/pom.xml
index 8ee8df1..007bf1c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -118,6 +118,7 @@
         <version>3.14.0</version>
         <configuration>
           <targetJdk>${sling.java.version}</targetJdk>
+          <excludeFromFailureFile>pmd-exclude.properties</excludeFromFailureFile>
         </configuration>
         <executions>
           <execution>
diff --git a/src/main/java/org/apache/sling/commons/clam/ScanResult.java b/src/main/java/org/apache/sling/commons/clam/ScanResult.java
index dd8c9dc..0ad9feb 100644
--- a/src/main/java/org/apache/sling/commons/clam/ScanResult.java
+++ b/src/main/java/org/apache/sling/commons/clam/ScanResult.java
@@ -109,7 +109,7 @@ public class ScanResult {
     /**
      * Status based on reply message from Clam (<code>OK</code>, <code>FOUND</code>, <code>ERROR</code>) or <code>UNKNOWN</code> if parsing reply message failed.
      */
-    public enum Status {
+    public static enum Status {
         OK,
         FOUND,
         ERROR,