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:
b2761fa
)
JAL 3591 simple coding error in appletgui/SeqPanel
author
BobHanson
<hansonr@stolaf.edu>
Tue, 7 Apr 2020 22:17:59 +0000
(17:17 -0500)
committer
BobHanson
<hansonr@stolaf.edu>
Tue, 7 Apr 2020 22:17:59 +0000
(17:17 -0500)
src/jalview/appletgui/SeqPanel.java
patch
|
blob
|
history
diff --git
a/src/jalview/appletgui/SeqPanel.java
b/src/jalview/appletgui/SeqPanel.java
index
32f0abb
..
ed3d8fa
100644
(file)
--- a/
src/jalview/appletgui/SeqPanel.java
+++ b/
src/jalview/appletgui/SeqPanel.java
@@
-820,7
+820,8
@@
public class SeqPanel extends Panel implements MouseMotionListener,
{
if (av.getAlignment().isNucleotide())
{
- String base = ResidueProperties.nucleotideName.get(ch);
+ String base = ResidueProperties.nucleotideName
+ .get(String.valueOf(ch)); // BH 2020.04.07 just Eclipse warning
text.append(" Nucleotide: ").append(base == null ? ch : base);
}
else