JAL-3438 spotless for 2.11.2.0
[jalview.git] / test / jalview / datamodel / features / FeatureMatcherSetTest.java
index a2d2c9a..47c47a9 100644 (file)
@@ -240,8 +240,8 @@ public class FeatureMatcherSetTest
   }
 
   /**
-   * Tests for the 'compound attribute' key i.e. where first key's value is a map
-   * from which we take the value for the second key, e.g. CSQ : Consequence
+   * Tests for the 'compound attribute' key i.e. where first key's value is a
+   * map from which we take the value for the second key, e.g. CSQ : Consequence
    */
   @Test(groups = "Functional")
   public void testMatches_compoundKey()
@@ -297,11 +297,11 @@ public class FeatureMatcherSetTest
     FeatureMatcherI fm1 = FeatureMatcher.byAttribute(Condition.LT, "1.2",
             "AF");
     assertEquals(fm1.toStableString(), "AF LT 1.2");
-  
+
     FeatureMatcher fm2 = FeatureMatcher.byAttribute(Condition.NotContains,
             "path", "CLIN_SIG");
     assertEquals(fm2.toStableString(), "CLIN_SIG NotContains path");
-  
+
     /*
      * AND them
      */
@@ -314,7 +314,7 @@ public class FeatureMatcherSetTest
     fms.and(fm2);
     assertEquals(fms.toStableString(),
             "(AF LT 1.2) AND (CLIN_SIG NotContains path)");
-  
+
     /*
      * OR them
      */
@@ -325,7 +325,7 @@ public class FeatureMatcherSetTest
     fms.or(fm2);
     assertEquals(fms.toStableString(),
             "(AF LT 1.2) OR (CLIN_SIG NotContains path)");
-  
+
     /*
      * attribute or value including space is quoted
      */
@@ -376,7 +376,7 @@ public class FeatureMatcherSetTest
     fms = FeatureMatcherSet
             .fromString("(AF LT 1.2) and (CLIN_SIG NotContains path)");
     assertEquals(fms.toStableString(), descriptor);
-  
+
     descriptor = "(AF LT 1.2) OR (CLIN_SIG NotContains path)";
     fms = FeatureMatcherSet.fromString(descriptor);
     assertEquals(fms.toStableString(), descriptor);
@@ -390,7 +390,7 @@ public class FeatureMatcherSetTest
     fms = FeatureMatcherSet
             .fromString("(AF LT 1.2) or CLIN_SIG NotContains path");
     assertEquals(fms.toStableString(), descriptor);
-  
+
     descriptor = "(AF LT 1.2) OR (CLIN_SIG NotContains path) OR ('CSQ:Poly Phen' NotMatches 'foo bar')";
     fms = FeatureMatcherSet.fromString(descriptor);
     assertEquals(fms.toStableString(), descriptor);