apply jalview code style
[jalview.git] / src / jalview / analysis / AAFrequency.java
index 11e7a3d..4bff6ef 100755 (executable)
@@ -204,16 +204,20 @@ public class AAFrequency
           boolean includeAllConsSymbols, char[] alphabet)
   {
     float tval, value;
-    if (consensus==null || consensus.annotations==null || consensus.annotations.length<width)
+    if (consensus == null || consensus.annotations == null
+            || consensus.annotations.length < width)
     {
-      // called with a bad alignment annotation row - wait for it to be initialised properly
+      // called with a bad alignment annotation row - wait for it to be
+      // initialised properly
       return;
     }
     for (int i = iStart; i < width; i++)
     {
-      if (i>=hconsensus.length) {
-        // happens if sequences calculated over were shorter than alignment width
-        consensus.annotations[i]=null;
+      if (i >= hconsensus.length)
+      {
+        // happens if sequences calculated over were shorter than alignment
+        // width
+        consensus.annotations[i] = null;
         continue;
       }
       value = 0;