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-numbers.git
The following commit(s) were added to refs/heads/master by this push: new 4b310628 Updated the checkstyle supressions file (#128) 4b310628 is described below commit 4b3106284915d02a886ae2cf6424e7d8eefd8bf9 Author: kitswas <90329875+kits...@users.noreply.github.com> AuthorDate: Thu Mar 9 18:24:55 2023 +0530 Updated the checkstyle supressions file (#128) Added missing regexes for paths to support both Windows and *nix. --- src/main/resources/checkstyle/checkstyle-suppressions.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/checkstyle/checkstyle-suppressions.xml b/src/main/resources/checkstyle/checkstyle-suppressions.xml index 73b2ae14..bdcbf24a 100644 --- a/src/main/resources/checkstyle/checkstyle-suppressions.xml +++ b/src/main/resources/checkstyle/checkstyle-suppressions.xml @@ -48,8 +48,8 @@ <suppress checks="IllegalCatch" files=".*[/\\]test[/\\].*" /> <suppress checks="MethodName" files=".*[/\\]test[/\\].*" /> <suppress checks="ConstantName" files=".*[/\\]test[/\\].*" /> - <suppress checks="MethodLength" files=".*/LinearCombination.*Test.java" /> + <suppress checks="MethodLength" files=".*[/\\]LinearCombination.*Test.java" /> <suppress checks="FileLengthCheck" files=".*[/\\]gamma[/\\]BoostGammaTest.java" /> - <suppress checks="MethodLength" files=".*/BoostBetaTest.java" /> + <suppress checks="MethodLength" files=".*[/\\]BoostBetaTest.java" /> <suppress checks="UnnecessaryParentheses" files=".*[/\\]gamma[/\\]BoostGammaTest.java" /> </suppressions>