git://source.jalview.org
/
jalview.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
86bf994
)
fix '\0' bug from score-only positional annotation
author
jprocter
<Jim Procter>
Thu, 26 Apr 2007 17:11:56 +0000
(17:11 +0000)
committer
jprocter
<Jim Procter>
Thu, 26 Apr 2007 17:11:56 +0000
(17:11 +0000)
src/jalview/datamodel/Annotation.java
patch
|
blob
|
history
diff --git
a/src/jalview/datamodel/Annotation.java
b/src/jalview/datamodel/Annotation.java
index
824c4be
..
9fc69bb
100755
(executable)
--- a/
src/jalview/datamodel/Annotation.java
+++ b/
src/jalview/datamodel/Annotation.java
@@
-101,6
+101,6
@@
public class Annotation
*/
public Annotation(float val)
{
- this(null, null, '\0', val);
+ this(null, null, ' ', val);
}
}