Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.help.base/src/org/eclipse/help/search/SearchParticipantXML.java')
-rw-r--r--org.eclipse.help.base/src/org/eclipse/help/search/SearchParticipantXML.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.help.base/src/org/eclipse/help/search/SearchParticipantXML.java b/org.eclipse.help.base/src/org/eclipse/help/search/SearchParticipantXML.java
index 2918c07a2..e3b9073cc 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/search/SearchParticipantXML.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/search/SearchParticipantXML.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2010, 2011 IBM Corporation and others.
+ * Copyright (c) 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -39,7 +39,7 @@ import org.xml.sax.helpers.DefaultHandler;
* @since 3.5
*/
public abstract class SearchParticipantXML extends SearchParticipant {
- private Stack<String> stack = new Stack<String>();
+ private Stack stack = new Stack();
private SAXParser parser;
private XMLProcessor processor;
private boolean hasFilters;
@@ -157,7 +157,7 @@ public abstract class SearchParticipantXML extends SearchParticipant {
public void endElement(String uri, String localName, String qName) throws SAXException {
handleEndElement(qName, data);
- String top = stack.peek();
+ String top = (String) stack.peek();
if (top != null && top.equals(qName))
stack.pop();
}
@@ -329,7 +329,7 @@ public abstract class SearchParticipantXML extends SearchParticipant {
*/
protected String getTopElement() {
- return stack.peek();
+ return (String) stack.peek();
}
/**
@@ -342,7 +342,7 @@ public abstract class SearchParticipantXML extends SearchParticipant {
for (int i = 0; i < stack.size(); i++) {
if (i > 0)
buf.append("/"); //$NON-NLS-1$
- buf.append(stack.get(i));
+ buf.append((String) stack.get(i));
}
return buf.toString();
}

Back to the top