JAL-3365 expand range of allowed DSSP secondary structure symbols in Stockholm files
[jalview.git] / src / jalview / datamodel / GraphLine.java
index aab55a1..38a5061 100755 (executable)
@@ -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.
  * 
@@ -61,12 +61,14 @@ public class GraphLine
     if (obj != null && obj instanceof GraphLine)
     {
       GraphLine other = (GraphLine) obj;
-      return displayed == other.displayed
-              && value == other.value
-              && (colour != null ? (other.colour != null && other.colour
-                      .equals(colour)) : other.colour == null)
-              && (label != null ? (other.label != null && other.label
-                      .equals(label)) : other.label == null);
+      return displayed == other.displayed && value == other.value
+              && (colour != null
+                      ? (other.colour != null
+                              && other.colour.equals(colour))
+                      : other.colour == null)
+              && (label != null
+                      ? (other.label != null && other.label.equals(label))
+                      : other.label == null);
     }
     return false;
   }