This is an automated email from the ASF dual-hosted git repository. aherbert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-statistics.git
commit 3c22ced7a08f1c2b1248d3efa747aa8fd55e2ca2 Author: Alex Herbert <[email protected]> AuthorDate: Tue Aug 25 14:22:42 2026 +0100 Checkstyle: Add SummaryJavadoc check --- src/conf/checkstyle/checkstyle-suppressions.xml | 1 + src/conf/checkstyle/checkstyle.xml | 1 + 2 files changed, 2 insertions(+) diff --git a/src/conf/checkstyle/checkstyle-suppressions.xml b/src/conf/checkstyle/checkstyle-suppressions.xml index f2cb3daf..e972a60f 100644 --- a/src/conf/checkstyle/checkstyle-suppressions.xml +++ b/src/conf/checkstyle/checkstyle-suppressions.xml @@ -47,4 +47,5 @@ <suppress checks="IllegalCatch" files=".*[/\\]TestHelper.java" lines="295-410" /> <suppress checks="IllegalCatch" files=".*[/\\]BaseStatisticTest.java" lines="280-400" /> <suppress checks="IllegalCatch" files=".*[/\\]IntMathTest.java" lines="170-185" /> + <suppress checks="SummaryJavadoc" files="[\\/]examples[\\/].*" /> </suppressions> diff --git a/src/conf/checkstyle/checkstyle.xml b/src/conf/checkstyle/checkstyle.xml index edec8520..c95dd977 100644 --- a/src/conf/checkstyle/checkstyle.xml +++ b/src/conf/checkstyle/checkstyle.xml @@ -93,6 +93,7 @@ <module name="JavadocMethod" /> <module name="JavadocType" /> <module name="JavadocVariable" /> + <module name="SummaryJavadoc" /> <module name="MissingJavadocMethod"> <property name="scope" value="private"/> </module>
