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

commit 377c972836ce6e4d43610953f3f080ba6ad85de8
Author: Alex Herbert <aherb...@apache.org>
AuthorDate: Sun Jan 5 23:13:42 2020 +0000

    Update checkstyle suppressions for Complex method length.
---
 src/main/resources/checkstyle/checkstyle-suppressions.xml | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/main/resources/checkstyle/checkstyle-suppressions.xml 
b/src/main/resources/checkstyle/checkstyle-suppressions.xml
index e370e53..ae460c8 100644
--- a/src/main/resources/checkstyle/checkstyle-suppressions.xml
+++ b/src/main/resources/checkstyle/checkstyle-suppressions.xml
@@ -19,9 +19,10 @@
     "-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN"
     "https://checkstyle.org/dtds/suppressions_1_2.dtd";>
 <suppressions>
-  <suppress checks="Indentation" files=".*/combinatorics/Factorial" />
-  <suppress checks="ParameterNumber" files=".*/arrays/LinearCombination" />
-  <suppress checks="FileLengthCheck" files=".*/Complex" />
+  <suppress checks="Indentation" files=".*/combinatorics/Factorial.java" />
+  <suppress checks="ParameterNumber" files=".*/arrays/LinearCombination.java" 
/>
+  <suppress checks="FileLengthCheck" files=".*/Complex.java" />
+  <suppress checks="MethodLength" files=".*/Complex.java" />
 
   <!-- Be more lenient on tests. -->
   <suppress checks="Javadoc" files=".*[/\\]test[/\\].*" />

Reply via email to