JAL-3746 apply copyright to tests
[jalview.git] / src / vamsas / objects / simple / Sequence.java
index 28dc9eb..0615c39 100755 (executable)
@@ -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)