Merge branch 'develop' into features/JAL-1705_ensembl
[jalview.git] / src / jalview / math / Matrix.java
index 9ac75d2..bb7ed37 100755 (executable)
  */
 package jalview.math;
 
-import java.io.*;
+import jalview.util.Format;
+import jalview.util.MessageManager;
 
-import jalview.util.*;
+import java.io.PrintStream;
 
 /**
  * DOCUMENT ME!
@@ -403,7 +404,9 @@ public class Matrix
 
           if (iter == maxIter)
           {
-            throw new Exception(MessageManager.formatMessage("exception.matrix_too_many_iteration", new String[]{"tqli", Integer.valueOf(maxIter).toString()}));
+            throw new Exception(MessageManager.formatMessage(
+                    "exception.matrix_too_many_iteration", new String[] {
+                        "tqli", Integer.valueOf(maxIter).toString() }));
           }
           else
           {
@@ -652,7 +655,9 @@ public class Matrix
 
           if (iter == maxIter)
           {
-              throw new Exception(MessageManager.formatMessage("exception.matrix_too_many_iteration", new String[]{"tqli2", Integer.valueOf(maxIter).toString()}));
+            throw new Exception(MessageManager.formatMessage(
+                    "exception.matrix_too_many_iteration", new String[] {
+                        "tqli2", Integer.valueOf(maxIter).toString() }));
           }
           else
           {