JAL-969 - refactor colourscheme machinery from GUI code to core alignment view model
[jalview.git] / src / jalview / io / JnetAnnotationMaker.java
index a4160c5..7252e5d 100755 (executable)
@@ -1,6 +1,6 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.5)
- * Copyright (C) 2010 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle
+ * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7)
+ * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle
  * 
  * This file is part of Jalview.
  * 
@@ -95,8 +95,8 @@ public class JnetAnnotationMaker
           {
             for (int j = 0; j < width; j++)
             {
-              annotations[gapmap[j]] = new Annotation("", "", preds[i]
-                      .getCharAt(j), 0);
+              annotations[gapmap[j]] = new Annotation("", "",
+                      preds[i].getCharAt(j), 0);
             }
           }
           else
@@ -126,9 +126,9 @@ public class JnetAnnotationMaker
             {
               float value = new Float(preds[i].getCharAt(j) + "")
                       .floatValue();
-              annotations[gapmap[delMap[j]]] = new Annotation(preds[i]
-                      .getCharAt(j)
-                      + "", "", preds[i].getCharAt(j), value);
+              annotations[gapmap[delMap[j]]] = new Annotation(
+                      preds[i].getCharAt(j) + "", "",
+                      preds[i].getCharAt(j), value);
             }
           }
         }
@@ -146,9 +146,8 @@ public class JnetAnnotationMaker
           {
             for (int j = 0; j < width; j++)
             {
-              annotations[gapmap[delMap[j]]] = new Annotation(preds[i]
-                      .getCharAt(j)
-                      + "", "", ' ', 0);
+              annotations[gapmap[delMap[j]]] = new Annotation(
+                      preds[i].getCharAt(j) + "", "", ' ', 0);
             }
           }
         }