X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fvamsas%2Fobjects%2Fsimple%2FSequence.java;h=0615c3944f1498e8bdc30ece8db6117dd1defb8d;hb=72a9ef4b4e3763c857ef095eadc8c656ccb441ff;hp=52770ad53c3a14bd96d6ac245f6b66fc6179ebf1;hpb=47168f025aefdaa044802bd5f8f510ffe43a4808;p=jalview.git diff --git a/src/vamsas/objects/simple/Sequence.java b/src/vamsas/objects/simple/Sequence.java index 52770ad..0615c39 100755 --- a/src/vamsas/objects/simple/Sequence.java +++ b/src/vamsas/objects/simple/Sequence.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2) - * Copyright (C) 2014 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * * This file is part of Jalview. * @@ -78,15 +78,22 @@ public class Sequence implements java.io.Serializable private java.lang.Object __equalsCalc = null; + @Override public synchronized boolean equals(java.lang.Object obj) { + if (obj == null) + { + return false; + } if (!(obj instanceof Sequence)) + { return false; + } Sequence other = (Sequence) obj; - if (obj == null) - return false; if (this == obj) + { return true; + } if (__equalsCalc != null) { return (__equalsCalc == obj); @@ -94,16 +101,18 @@ public class Sequence implements java.io.Serializable __equalsCalc = obj; boolean _equals; _equals = true - && ((this.id == null && other.getId() == null) || (this.id != null && this.id - .equals(other.getId()))) - && ((this.seq == null && other.getSeq() == null) || (this.seq != null && this.seq - .equals(other.getSeq()))); + && ((this.id == null && other.getId() == null) + || (this.id != null && this.id.equals(other.getId()))) + && ((this.seq == null && other.getSeq() == null) + || (this.seq != null + && this.seq.equals(other.getSeq()))); __equalsCalc = null; return _equals; } private boolean __hashCodeCalc = false; + @Override public synchronized int hashCode() { if (__hashCodeCalc)