JAL-1645 source formatting and organise imports
[jalview.git] / src / jalview / io / FormatAdapter.java
index 63a14d7..ebca31b 100755 (executable)
@@ -63,9 +63,9 @@ public class FormatAdapter extends AppletFormatAdapter
       annotFromStructure = jalview.bin.Cache.getDefault("ADD_TEMPFACT_ANN",
               true);
       localSecondaryStruct = jalview.bin.Cache.getDefault("ADD_SS_ANN",
-            true);
-    serviceSecondaryStruct = jalview.bin.Cache.getDefault("USE_RNAVIEW",
-            true);
+              true);
+      serviceSecondaryStruct = jalview.bin.Cache.getDefault("USE_RNAVIEW",
+              true);
     }
     else
     {
@@ -108,7 +108,6 @@ public class FormatAdapter extends AppletFormatAdapter
         startRes = seqs[i].getStart();
         endRes = seqs[i].getEnd();
 
-
         if (startEnd != null)
         {
           startIndex = startEnd[0];
@@ -271,14 +270,12 @@ public class FormatAdapter extends AppletFormatAdapter
           ColumnSelection colSel)
   {
     return formatSequences(format, alignment, omitHidden, exportRange,
-            suffix, colSel,
-            null);
+            suffix, colSel, null);
   }
 
   public String formatSequences(String format, AlignmentI alignment,
           String[] omitHidden, int[] exportRange, boolean suffix,
-          ColumnSelection colSel,
-          jalview.datamodel.SequenceGroup selgp)
+          ColumnSelection colSel, jalview.datamodel.SequenceGroup selgp)
   {
     if (omitHidden != null)
     {
@@ -363,5 +360,4 @@ public class FormatAdapter extends AppletFormatAdapter
             selectedOnly);
   }
 
-
 }