Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.help.base/src/org/eclipse/help/internal/xhtml/XHTMLCharsetHandler.java')
-rw-r--r--org.eclipse.help.base/src/org/eclipse/help/internal/xhtml/XHTMLCharsetHandler.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/xhtml/XHTMLCharsetHandler.java b/org.eclipse.help.base/src/org/eclipse/help/internal/xhtml/XHTMLCharsetHandler.java
index 2c778a2f5..5a6a672e3 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/xhtml/XHTMLCharsetHandler.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/xhtml/XHTMLCharsetHandler.java
@@ -11,14 +11,14 @@
package org.eclipse.help.internal.xhtml;
import org.eclipse.help.Node;
-import org.eclipse.help.internal.dynamic.DocumentProcessorHandler;
+import org.eclipse.help.internal.dynamic.NodeHandler;
/*
* Converts the charset in XHTML meta tag to UTF-8. This is the encoding
* output by the XMLProcessor, and we need the charset in the meta tags
* to match, otherwise browsers will be confused.
*/
-public class XHTMLCharsetHandler extends DocumentProcessorHandler {
+public class XHTMLCharsetHandler extends NodeHandler {
private static final String ELEMENT_META = "meta"; //$NON-NLS-1$
private static final String ATTRIBUTE_CONTENT = "content"; //$NON-NLS-1$

Back to the top