Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Swanson2002-01-10 15:37:38 +0000
committerDarin Swanson2002-01-10 15:37:38 +0000
commite0ee2e5f61de5356319108a4902e92c7e4571ece (patch)
tree3e2c68e30466386d4dca0fa850b74b67b96142e8
parenta4175134625bbad78d4336931289e41fac2afc8e (diff)
downloadeclipse.platform.debug-e0ee2e5f61de5356319108a4902e92c7e4571ece.tar.gz
eclipse.platform.debug-e0ee2e5f61de5356319108a4902e92c7e4571ece.tar.xz
eclipse.platform.debug-e0ee2e5f61de5356319108a4902e92c7e4571ece.zip
Removed deprecated methodv20020110
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/StringMatcher.java13
1 files changed, 1 insertions, 12 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/StringMatcher.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/StringMatcher.java
index 23c8daad3..a26de5e8b 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/StringMatcher.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/StringMatcher.java
@@ -36,18 +36,7 @@ public class StringMatcher {
return end;
}
}
-
- /**
- * StringMatcher constructor takes in a String object that is a simple
- * pattern which may contain ‘*’ for 0 and many characters and
- * ‘?’ for exactly one character. Also takes as parameter a boolean object
- * specifying if case should be ignored
- * @deprecated Use StringMatcher(pattern, ignoreCase, ignoreWildCards).
- */
- public StringMatcher(String aPattern, boolean ignoreCase) {
- this(aPattern, ignoreCase, false);
- }
-
+
/**
* StringMatcher constructor takes in a String object that is a simple
* pattern which may contain ‘*’ for 0 and many characters and

Back to the top