Skip to content

Commit 5e0e78f

Browse files
committed
Another serializable, we should revise at some point all
serializables...
1 parent 72317d9 commit 5e0e78f

File tree

1 file changed

+5
-1
lines changed
  • biojava-structure/src/main/java/org/biojava/nbio/structure/io/mmcif/model

1 file changed

+5
-1
lines changed

biojava-structure/src/main/java/org/biojava/nbio/structure/io/mmcif/model/ChemCompBond.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
*/
2525
package org.biojava.nbio.structure.io.mmcif.model;
2626

27+
import java.io.Serializable;
28+
2729
import org.slf4j.Logger;
2830
import org.slf4j.LoggerFactory;
2931

@@ -37,7 +39,9 @@
3739
_chem_comp_bond.pdbx_stereo_config
3840
_chem_comp_bond.pdbx_ordinal
3941
*/
40-
public class ChemCompBond {
42+
public class ChemCompBond implements Serializable {
43+
44+
private static final long serialVersionUID = 5905371029161975421L;
4145

4246
private static final Logger logger = LoggerFactory.getLogger(ChemCompBond.class);
4347

0 commit comments

Comments
 (0)