You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2021/05/08 21:16:05 UTC

[maven-shared-resources] branch master updated: [MSHARED-990] JavadocMethodCheck: swap scope to access modifiers

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

slachiewicz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-shared-resources.git


The following commit(s) were added to refs/heads/master by this push:
     new fbef6f6  [MSHARED-990] JavadocMethodCheck: swap scope to access modifiers
fbef6f6 is described below

commit fbef6f62bdb9e5549e275ba0aeed879b672e7cdb
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Sat May 8 19:08:21 2021 +0200

    [MSHARED-990] JavadocMethodCheck: swap scope to access modifiers
    
    Required change for Checkstyle 8.42 checkstyle/checkstyle#7417
---
 src/main/resources/config/maven_checks.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/resources/config/maven_checks.xml b/src/main/resources/config/maven_checks.xml
index 86fc6a2..1b3453a 100644
--- a/src/main/resources/config/maven_checks.xml
+++ b/src/main/resources/config/maven_checks.xml
@@ -97,8 +97,8 @@ under the License.
         </module>
 -->
         <module name="JavadocMethod">
+          <property name="accessModifiers" value="public, protected"/>
           <property name="severity" value="warning"/>
-          <property name="scope" value="protected"/>
         </module>
         <module name="JavadocType">
           <property name="scope" value="protected"/>