fix '\0' bug from score-only positional annotation
authorjprocter <Jim Procter>
Thu, 26 Apr 2007 17:11:56 +0000 (17:11 +0000)
committerjprocter <Jim Procter>
Thu, 26 Apr 2007 17:11:56 +0000 (17:11 +0000)
src/jalview/datamodel/Annotation.java

index 824c4be..9fc69bb 100755 (executable)
@@ -101,6 +101,6 @@ public class Annotation
    */
   public Annotation(float val)
   {
-    this(null, null, '\0', val);
+    this(null, null, ' ', val);
   }
 }