JAL-1551 spotlessApply
[jalview.git] / src / jalview / io / StockholmFile.java
index eeadcbf..28f062f 100644 (file)
@@ -218,8 +218,9 @@ public class StockholmFile extends AlignFile
     r = new Regex("# STOCKHOLM ([\\d\\.]+)");
     if (!r.search(nextLine()))
     {
-      throw new IOException(MessageManager
-                           .getString("exception.stockholm_invalid_format") +" ("+r+")");
+      throw new IOException(
+              MessageManager.getString("exception.stockholm_invalid_format")
+                      + " (" + r + ")");
     }
     else
     {
@@ -1052,11 +1053,11 @@ public class StockholmFile extends AlignFile
 
     while (i < slen && (seq = s[i]) != null)
     {
-      if (seq.getDescription()!=null)
+      if (seq.getDescription() != null)
       {
         // out.append("#=GR ");
-        out.append(new Format("%-" + maxid + "s").form(
-                "#=GS " + printId(seq, jvSuffix) + " DE " + seq.getDescription()));
+        out.append(new Format("%-" + maxid + "s").form("#=GS "
+                + printId(seq, jvSuffix) + " DE " + seq.getDescription()));
         out.append(newline);
       }