JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / jalview / datamodel / features / FeatureMatcher.java
index 69f80f2..65cba0d 100644 (file)
@@ -310,6 +310,7 @@ public class FeatureMatcher implements FeatureMatcherI
     byLabel = forLabel;
     byScore = forScore;
   }
+
   @Override
   public boolean matches(SequenceFeature feature)
   {
@@ -332,8 +333,8 @@ public class FeatureMatcher implements FeatureMatcherI
   }
 
   /**
-   * Answers a string description of this matcher, suitable for display, debugging
-   * or logging. The format may change in future.
+   * Answers a string description of this matcher, suitable for display,
+   * debugging or logging. The format may change in future.
    */
   @Override
   public String toString()
@@ -415,7 +416,7 @@ public class FeatureMatcher implements FeatureMatcherI
         sb.append(displayName);
       }
     }
-  
+
     Condition condition = matcher.getCondition();
     sb.append(SPACE).append(condition.getStableName());
     String pattern = matcher.getPattern();
@@ -433,7 +434,7 @@ public class FeatureMatcher implements FeatureMatcherI
         sb.append(SPACE).append(pattern);
       }
     }
-  
+
     return sb.toString();
   }
 }