From bc6c018d5f768668c242fa02fe206a7e2e839fd2 Mon Sep 17 00:00:00 2001 From: peter Date: Tue, 26 Apr 2011 13:00:25 +0200 Subject: [PATCH] remove FALSE_MATCHER --- .../codeInsight/completion/PrefixMatcher.java | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/platform/lang-api/src/com/intellij/codeInsight/completion/PrefixMatcher.java b/platform/lang-api/src/com/intellij/codeInsight/completion/PrefixMatcher.java index eb80b2c7319e..15c27b6628b2 100644 --- a/platform/lang-api/src/com/intellij/codeInsight/completion/PrefixMatcher.java +++ b/platform/lang-api/src/com/intellij/codeInsight/completion/PrefixMatcher.java @@ -7,17 +7,6 @@ import org.jetbrains.annotations.NotNull; * @author peter */ public abstract class PrefixMatcher { - public static final PrefixMatcher FALSE_MATCHER = new PrefixMatcher("######################################") { - - public boolean prefixMatches(@NotNull final String name) { - return false; - } - - @NotNull - public PrefixMatcher cloneWithPrefix(@NotNull final String prefix) { - return this; - } - }; protected final String myPrefix; protected PrefixMatcher(String prefix) {