JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / jalview / util / Comparison.java
index 0d945ac..cd98ee7 100644 (file)
@@ -268,7 +268,7 @@ public class Comparison
    */
   public static final boolean isNucleotide(SequenceI seq)
   {
-    if (seq==null)
+    if (seq == null)
     {
       return false;
     }
@@ -297,9 +297,10 @@ public class Comparison
      * Check for nucleotide count > 85% of total count (in a form that evades
      * int / float conversion or divide by zero).
      */
-    if ((ntCount+nCount) * 100 > EIGHTY_FIVE * (ntCount + aaCount))
+    if ((ntCount + nCount) * 100 > EIGHTY_FIVE * (ntCount + aaCount))
     {
-      return ntCount>0; // all N is considered protein. Could use a threshold here too
+      return ntCount > 0; // all N is considered protein. Could use a threshold
+                          // here too
     }
     else
     {