From 0b488ca3a8270622784bf9f5a09a5b6bfcdf12b0 Mon Sep 17 00:00:00 2001 From: Tyler Peryea Date: Tue, 1 Mar 2022 13:54:51 -0500 Subject: [PATCH] removed file that's unused? --- .../ix/ginas/models/v1/QualifiedAtom.java | 65 ------------------- 1 file changed, 65 deletions(-) delete mode 100644 gsrs-module-substances-core/src/main/java/ix/ginas/models/v1/QualifiedAtom.java diff --git a/gsrs-module-substances-core/src/main/java/ix/ginas/models/v1/QualifiedAtom.java b/gsrs-module-substances-core/src/main/java/ix/ginas/models/v1/QualifiedAtom.java deleted file mode 100644 index 73001eba5..000000000 --- a/gsrs-module-substances-core/src/main/java/ix/ginas/models/v1/QualifiedAtom.java +++ /dev/null @@ -1,65 +0,0 @@ -package ix.ginas.models.v1; - -import java.util.Objects; - -/** - * - * @author mitch - */ -public class QualifiedAtom{ - public QualifiedAtom(String symbol, int massIndication) { - this.symbol = symbol; - this.massIndication = massIndication; - } - - @Override - public int hashCode() { - int hash = 3; - hash = 29 * hash + Objects.hashCode(this.symbol); - hash = 29 * hash + this.massIndication; - return hash; - } - - @Override - public boolean equals(Object obj) { - if (this == obj) { - return true; - } - if (obj == null) { - return false; - } - if (getClass() != obj.getClass()) { - return false; - } - final QualifiedAtom other = (QualifiedAtom) obj; - if (this.massIndication != other.massIndication) { - return false; - } - if (!Objects.equals(this.symbol, other.symbol)) { - return false; - } - return true; - } - - private String symbol; - private int massIndication; - - public String getSymbol() { - return symbol; - } - - - public void setSymbol(String symbol) { - this.symbol = symbol; - } - - public int getMassIndication() { - return massIndication; - } - - public void setMassIndication(int massIndication) { - this.massIndication = massIndication; - } - - -}