File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
biojava-core/src/main/java/org/biojava/nbio/core/sequence/compound Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 2525import org .biojava .nbio .core .sequence .template .CompoundSet ;
2626import org .biojava .nbio .core .sequence .template .Sequence ;
2727
28+ import java .io .Serializable ;
2829import java .util .*;
2930
3031/**
3738 * @author Scooter Willis
3839 * @author Mark Chapman
3940 */
40- public class AminoAcidCompoundSet implements CompoundSet <AminoAcidCompound > {
41+ public class AminoAcidCompoundSet implements CompoundSet <AminoAcidCompound >, Serializable {
4142
42- private final Map <String , AminoAcidCompound > aminoAcidCompoundCache = new HashMap <String , AminoAcidCompound >();
43+ /**
44+ *
45+ */
46+ private static final long serialVersionUID = 4000344194364133456L ;
47+ private final Map <String , AminoAcidCompound > aminoAcidCompoundCache = new HashMap <String , AminoAcidCompound >();
4348 private final Map <String , AminoAcidCompound > aminoAcidCompoundCache3Letter = new HashMap <String , AminoAcidCompound >();
4449
4550 private final Map <AminoAcidCompound , Set <AminoAcidCompound >> equivalentsCache =
You can’t perform that action at this time.
0 commit comments