JAL-3829 ensure nulls are not wildcards when retrieving annotation by calcId/label...
authorJim Procter <j.procter@dundee.ac.uk>
Mon, 20 Sep 2021 13:54:14 +0000 (14:54 +0100)
committerJim Procter <j.procter@dundee.ac.uk>
Mon, 20 Sep 2021 13:54:14 +0000 (14:54 +0100)
src/jalview/datamodel/Sequence.java

index 3bd7b4b..d52e049 100755 (executable)
@@ -1810,18 +1810,16 @@ public class Sequence extends ASequence implements SequenceI
   }
 
   private List<AlignmentAnnotation> getAlignmentAnnotations(String calcId,
-          String label, String description, boolean nullWildcard)
+          String label, String description, boolean ignoreDescription)
   {
     List<AlignmentAnnotation> result = new ArrayList<>();
     if (this.annotation != null)
     {
       for (AlignmentAnnotation ann : annotation)
       {
-        if (((nullWildcard && calcId == null)
-                || (ann.calcId != null && ann.calcId.equals(calcId)))
-                && ((nullWildcard && label == null)
-                        || (ann.label != null && ann.label.equals(label)))
-                && ((nullWildcard && description == null)
+        if ((ann.calcId != null && ann.calcId.equals(calcId))
+                && (ann.label != null && ann.label.equals(label))
+                && ((ignoreDescription && description == null)
                         || (ann.description != null
                                 && ann.description.equals(description))))