Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Michel-Lemieux2003-07-31 15:32:54 +0000
committerJean Michel-Lemieux2003-07-31 15:32:54 +0000
commitd68ef2c76fca5169e879deaabd937fcd97b6918f (patch)
treeac66531f360773d8c75a23471a31fcb2ae7caded /bundles/org.eclipse.team.core
parent6ac98a83662222d0f081cd4d3b038ee082592615 (diff)
downloadeclipse.platform.team-d68ef2c76fca5169e879deaabd937fcd97b6918f.tar.gz
eclipse.platform.team-d68ef2c76fca5169e879deaabd937fcd97b6918f.tar.xz
eclipse.platform.team-d68ef2c76fca5169e879deaabd937fcd97b6918f.zip
Removed non- UTF-8 characters
Diffstat (limited to 'bundles/org.eclipse.team.core')
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/StringMatcher.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/StringMatcher.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/StringMatcher.java
index 39ed858a4..5262fedaf 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/StringMatcher.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/StringMatcher.java
@@ -103,8 +103,8 @@ public class StringMatcher {
}
/**
* 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.
+ * pattern which may contain '*' for 0 and many characters and
+ * '?' for exactly one character.
*
* Literal '*' and '?' characters must be escaped in the pattern
* e.g., "\*" means literal "*", etc.
@@ -234,8 +234,8 @@ public class StringMatcher {
fBound = fLength;
}
/**
- * This method parses the given pattern into segments seperated by wildcard '*' characters.
- * @param p, a String object that is a simple regular expression with *  and/or ? 
+ * This method parses the given pattern into segments seperated by wildcard '*' characters.
+ * @param p, a String object that is a simple regular expression with '*' and/or '?'
*/
private void parseWildCards() {
if(fPattern.startsWith("*"))//$NON-NLS-1$

Back to the top