You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2019/12/06 18:29:03 UTC

[commons-numbers] 09/19: Allow Complex to exceed 2000 lines.

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 85d3ba3dd9efb740b321439b127e268a1d900dab
Author: aherbert <ah...@apache.org>
AuthorDate: Fri Dec 6 13:59:59 2019 +0000

    Allow Complex to exceed 2000 lines.
---
 src/main/resources/checkstyle/checkstyle-suppressions.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/main/resources/checkstyle/checkstyle-suppressions.xml b/src/main/resources/checkstyle/checkstyle-suppressions.xml
index f7dd45a..e370e53 100644
--- a/src/main/resources/checkstyle/checkstyle-suppressions.xml
+++ b/src/main/resources/checkstyle/checkstyle-suppressions.xml
@@ -21,6 +21,7 @@
 <suppressions>
   <suppress checks="Indentation" files=".*/combinatorics/Factorial" />
   <suppress checks="ParameterNumber" files=".*/arrays/LinearCombination" />
+  <suppress checks="FileLengthCheck" files=".*/Complex" />
 
   <!-- Be more lenient on tests. -->
   <suppress checks="Javadoc" files=".*[/\\]test[/\\].*" />