Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDejan Gloszic2005-12-12 23:56:51 +0000
committerDejan Gloszic2005-12-12 23:56:51 +0000
commit8d58fd0eccba216012c6dd0da170ef19023134d5 (patch)
tree05748fe21eea376ad1cc9d17411862892eab46b6 /org.eclipse.help.base
parent43ad124bfe61ed6cc759775967a264713deda82d (diff)
downloadeclipse.platform.ua-8d58fd0eccba216012c6dd0da170ef19023134d5.tar.gz
eclipse.platform.ua-8d58fd0eccba216012c6dd0da170ef19023134d5.tar.xz
eclipse.platform.ua-8d58fd0eccba216012c6dd0da170ef19023134d5.zip
*** empty log message ***
Diffstat (limited to 'org.eclipse.help.base')
-rw-r--r--org.eclipse.help.base/src/org/eclipse/help/internal/search/XHTMLSearchParticipant.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/search/XHTMLSearchParticipant.java b/org.eclipse.help.base/src/org/eclipse/help/internal/search/XHTMLSearchParticipant.java
index c4defb170..baddad91e 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/search/XHTMLSearchParticipant.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/search/XHTMLSearchParticipant.java
@@ -32,7 +32,7 @@ public class XHTMLSearchParticipant extends XMLSearchParticipant {
public void startElement(String uri, String localName, String qName, Attributes attributes)
throws SAXException {
- String eid = attributes.getValue("id");
+ String eid = attributes.getValue("id"); //$NON-NLS-1$
if (eid != null && eid.equals(id)) {
stack.push(qName);
active = true;
@@ -69,8 +69,8 @@ public class XHTMLSearchParticipant extends XMLSearchParticipant {
}
protected void handleStartElement(String name, Attributes attributes, IParsedXMLContent data) {
- if (name.equalsIgnoreCase("include")) {
- processIncludedContent(attributes.getValue("path"), data);
+ if (name.equalsIgnoreCase("include")) { //$NON-NLS-1$
+ processIncludedContent(attributes.getValue("path"), data); //$NON-NLS-1$
}
}

Back to the top