JAL-1551 spotlessApply
[jalview.git] / src / jalview / datamodel / GroupSet.java
index b4d3e64..c7a73b7 100644 (file)
@@ -16,12 +16,12 @@ public class GroupSet implements GroupSetI
 
   public GroupSet(GroupSet grps)
   {
-    abs=grps.abs;
-    colorMap=new HashMap<BitSet, Color>(grps.colorMap);
-    groups=new ArrayList<BitSet>(grps.groups);
-    newick=grps.newick;
-    thresh=grps.thresh;
-    treeType=grps.treeType;
+    abs = grps.abs;
+    colorMap = new HashMap<BitSet, Color>(grps.colorMap);
+    groups = new ArrayList<BitSet>(grps.groups);
+    newick = grps.newick;
+    thresh = grps.thresh;
+    treeType = grps.treeType;
   }
 
   public GroupSet()
@@ -36,7 +36,7 @@ public class GroupSet implements GroupSetI
     thresh = thresh2;
     groups = groups2;
     treeType = treeType2;
-    newick=newick2;
+    newick = newick2;
   }
 
   @Override
@@ -59,9 +59,9 @@ public class GroupSet implements GroupSetI
     return newick != null && newick.length() > 0;
   }
 
-  boolean abs=false;
+  boolean abs = false;
 
-  double thresh=0;
+  double thresh = 0;
 
   String treeType = null;
 
@@ -179,7 +179,7 @@ public class GroupSet implements GroupSetI
       }
       groups.add(gpset);
     }
-    GroupSet grps = new GroupSet(abs,thresh,groups,treeType, newick);
+    GroupSet grps = new GroupSet(abs, thresh, groups, treeType, newick);
     return grps;
   }