Skip to content

Commit 5d4eba2

Browse files
committed
Fix compilation error after cherry-pick
1 parent 69e105a commit 5d4eba2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

biojava-structure-gui/src/main/java/org/biojava/nbio/structure/align/gui/jmol/AbstractAlignmentJmol.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public void destroy(){
103103
public void setAtoms(Atom[] atoms){
104104
Structure s = new StructureImpl();
105105
Chain c = new ChainImpl();
106-
c.setId("A");
106+
c.setChainID("A");
107107
for (Atom a: atoms){
108108
c.addGroup(a.getGroup());
109109
}

0 commit comments

Comments
 (0)