JAL-1925 update source version in license
[jalview.git] / src / jalview / ws / jws1 / Annotate3D.java
index d0712da..a17fe63 100644 (file)
@@ -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 2.9.0b2)
+ * Copyright (C) 2015 The Jalview Authors
  * 
  * This file is part of Jalview.
  * 
  */
 package jalview.ws.jws1;
 
-import jalview.datamodel.Alignment;
 import jalview.datamodel.AlignmentI;
 import jalview.io.FileParse;
 import jalview.io.FormatAdapter;
 import jalview.io.InputStreamParser;
+import jalview.util.MessageManager;
 
 import java.io.BufferedReader;
 import java.io.FileReader;
@@ -82,15 +82,17 @@ public class Annotate3D
       }
       Iterator<Reader> r = jalview.ext.paradise.Annotate3D
               .getRNAMLForPDBFileAsString(sb.toString());
-      AlignmentI al=null;
+      AlignmentI al = null;
       while (r.hasNext())
       {
         FileParse fp = new InputStreamParser(r.next(), source.getDataName());
         AlignmentI nal = new FormatAdapter().readFromFile(fp, "RNAML");
-        if (al==null)
+        if (al == null)
         {
           al = nal;
-        } else {
+        }
+        else
+        {
           al.append(nal);
         }
       }
@@ -104,7 +106,8 @@ public class Annotate3D
       else
       {
         throw new IOException(
-                "Unexpected exception when handling RNAML translation of PDB data",
+                MessageManager
+                        .getString("exception.unexpected_handling_rnaml_translation_for_pdb"),
                 x);
       }
     }