JAL-1645 source formatting and organise imports
[jalview.git] / src / jalview / math / Matrix.java
index 036d16a..bb7ed37 100755 (executable)
@@ -1,6 +1,6 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2)
- * Copyright (C) 2014 The Jalview Authors
+ * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
+ * Copyright (C) $$Year-Rel$$ The Jalview Authors
  * 
  * This file is part of Jalview.
  * 
  */
 package jalview.math;
 
-import java.io.*;
+import jalview.util.Format;
+import jalview.util.MessageManager;
 
-import jalview.util.*;
+import java.io.PrintStream;
 
 /**
  * DOCUMENT ME!
@@ -403,8 +404,9 @@ public class Matrix
 
           if (iter == maxIter)
           {
-            throw new Exception("Too many iterations in tqli (" + maxIter
-                    + ")");
+            throw new Exception(MessageManager.formatMessage(
+                    "exception.matrix_too_many_iteration", new String[] {
+                        "tqli", Integer.valueOf(maxIter).toString() }));
           }
           else
           {
@@ -653,8 +655,9 @@ public class Matrix
 
           if (iter == maxIter)
           {
-            throw new Exception("Too many iterations in tqli2 (max is "
-                    + maxIter + ")");
+            throw new Exception(MessageManager.formatMessage(
+                    "exception.matrix_too_many_iteration", new String[] {
+                        "tqli2", Integer.valueOf(maxIter).toString() }));
           }
           else
           {