equivalence for transferring/updating references
[jalview.git] / src / jalview / datamodel / Annotation.java
index adb9bc5..9fc69bb 100755 (executable)
@@ -43,7 +43,7 @@ public class Annotation
   // add visual cues here
 
   /** DOCUMENT ME!! */
-  public Color colour = Color.black;
+  public Color colour;
 
   /**
    * Creates a new Annotation object.
@@ -101,6 +101,6 @@ public class Annotation
    */
   public Annotation(float val)
   {
-    this(null, null, '\0', val);
+    this(null, null, ' ', val);
   }
 }