X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FGraphLine.java;h=be475f423db2b43b06707dd4d79fada6de631c58;hb=dfa04e77181fccfa6229ffef1591fc9c622d9b39;hp=619dbd221848ec3c6508c2817f5c119e82e3df2e;hpb=a8c9bb134b3146ff69f70dc34cf8951f3a8b139c;p=jalview.git diff --git a/src/jalview/datamodel/GraphLine.java b/src/jalview/datamodel/GraphLine.java index 619dbd2..be475f4 100755 --- a/src/jalview/datamodel/GraphLine.java +++ b/src/jalview/datamodel/GraphLine.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8) - * Copyright (C) 2012 J Procter, AM Waterhouse, LM Lui, J Engelhardt, G Barton, M Clamp, S Searle + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.0b1) + * Copyright (C) 2014 The Jalview Authors * * This file is part of Jalview. * @@ -14,6 +14,7 @@ * PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. */ package jalview.datamodel; @@ -58,9 +59,9 @@ public class GraphLine { GraphLine other = (GraphLine) obj; return displayed == other.displayed - && value != other.value + && value == other.value && (colour != null ? (other.colour != null && other.colour - .equals(label)) : other.colour == null) + .equals(colour)) : other.colour == null) && (label != null ? (other.label != null && other.label .equals(label)) : other.label == null); }