JAL-3990 gradle spotlessApply
[jalview.git] / src / jalview / io / SequenceAnnotationReport.java
index 7fc04e1..c831366 100644 (file)
@@ -539,7 +539,7 @@ public class SequenceAnnotationReport
   protected int appendDbRefs(final StringBuilder sb, SequenceI ds,
           boolean summary)
   {
-    List<DBRefEntry> dbrefs,dbrefset = ds.getDBRefs();
+    List<DBRefEntry> dbrefs, dbrefset = ds.getDBRefs();
 
     if (dbrefset == null)
     {
@@ -549,9 +549,9 @@ public class SequenceAnnotationReport
     // PATCH for JAL-3980 defensive copy
 
     dbrefs = new ArrayList<DBRefEntry>();
-    
+
     dbrefs.addAll(dbrefset);
-    
+
     // note this sorts the refs held on the sequence!
     dbrefs.sort(comparator);
     boolean ellipsis = false;