Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.m2e.editor/src/org/eclipse/m2e/editor/pom/SearchMatcher.java')
-rw-r--r--org.eclipse.m2e.editor/src/org/eclipse/m2e/editor/pom/SearchMatcher.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/org.eclipse.m2e.editor/src/org/eclipse/m2e/editor/pom/SearchMatcher.java b/org.eclipse.m2e.editor/src/org/eclipse/m2e/editor/pom/SearchMatcher.java
index 2e244fea..d7e35675 100644
--- a/org.eclipse.m2e.editor/src/org/eclipse/m2e/editor/pom/SearchMatcher.java
+++ b/org.eclipse.m2e.editor/src/org/eclipse/m2e/editor/pom/SearchMatcher.java
@@ -11,7 +11,6 @@
package org.eclipse.m2e.editor.pom;
-
/**
* @author Eugene Kuleshov
*/
@@ -28,7 +27,7 @@ public class SearchMatcher extends Matcher {
return (groupId != null && groupId.indexOf(text) > -1) //
|| (artifactId != null && artifactId.indexOf(text) > -1);
}
-
+
public boolean isEmpty() {
return searchControl.getSearchText().getText() == null //
|| searchControl.getSearchText().getText().trim().length() == 0;

Back to the top