X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FGraphLine.java;h=38a506180f9c7f8bcae5fe381909ea2cb5556b30;hb=14bfc6fb57f123b815f08dbf5b35544abd33b3af;hp=a3d5b771fd9604356cdb4cca839546dc94b2807a;hpb=838e4f91d4a53dd315640dbc9ff6ef7a815ee576;p=jalview.git diff --git a/src/jalview/datamodel/GraphLine.java b/src/jalview/datamodel/GraphLine.java index a3d5b77..38a5061 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.9.0b1) - * Copyright (C) 2015 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; }