Update checkstyle suppressions for Complex method length.
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[/\\].*" />