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

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

commit 9dba3d2de7fc79574ec7be5f029606c99e9c211d
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Jan 21 11:35:30 2025 -0500

    Add Checkstyle MissingOverride
---
 src/conf/checkstyle.xml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/conf/checkstyle.xml b/src/conf/checkstyle.xml
index b564bd14..67a8d813 100644
--- a/src/conf/checkstyle.xml
+++ b/src/conf/checkstyle.xml
@@ -25,6 +25,7 @@ limitations under the License.
   <module name="FileTabCharacter">
     <property name="fileExtensions" value="java,xml" />
   </module>  
+    <!-- <module name="JavadocMethod"> <property name="allowUndeclaredRTE" 
value="true"/> <property name="scope" value="public" /> </module> -->
   <module name="JavadocPackage" />
   <module name="LineLength">
     <property name="max" value="160" />
@@ -68,9 +69,9 @@ limitations under the License.
       <property name="separated" value="true" />
     </module>
     <module name="LeftCurly" />
-    <module name="NeedBraces" />
-    <!-- <module name="JavadocMethod"> <property name="allowUndeclaredRTE" 
value="true"/> <property name="scope" value="public" /> </module> -->
+    <module name="MissingOverride" />
     <module name="ModifierOrder" />
+    <module name="NeedBraces" />
     <module name="RedundantImport" />
     <module name="RedundantModifier" />
     <module name="RightCurly" />

Reply via email to