Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDJ Houghton2009-03-23 20:56:07 +0000
committerDJ Houghton2009-03-23 20:56:07 +0000
commit0e1b69f6bb0c1227f63ec0efc5eb061468269fe2 (patch)
tree24648b84a86f4db441d4486715f67abe4dd7bcfc /bundles/org.eclipse.equinox.p2.ui
parent4213bc2e82b694fe615b45e5f28b924879d94547 (diff)
downloadrt.equinox.p2-0e1b69f6bb0c1227f63ec0efc5eb061468269fe2.tar.gz
rt.equinox.p2-0e1b69f6bb0c1227f63ec0efc5eb061468269fe2.tar.xz
rt.equinox.p2-0e1b69f6bb0c1227f63ec0efc5eb061468269fe2.zip
Fixed javadoc compile error.v20090323
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.ui')
-rw-r--r--bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/ComboAutoCompleteField.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/ComboAutoCompleteField.java b/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/ComboAutoCompleteField.java
index 3436d7d5a..155d3d0c6 100644
--- a/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/ComboAutoCompleteField.java
+++ b/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/ComboAutoCompleteField.java
@@ -452,10 +452,9 @@ public class ComboAutoCompleteField {
*
* @return boolean
* @param text a String to match
- * @param tstart int that indicates the starting index of match, inclusive
+ * @param tStart int that indicates the starting index of match, inclusive
* @param p String, String, a simple regular expression that may contain '?'
* @param plen length of string
- * @param ignoreCase boolean indicating whether code>p</code> is case sensitive
*/
protected boolean regExpRegionMatches(String text, int tStart, String p, int pStart, int plen) {
while (plen-- > 0) {

Back to the top