|
19 | 19 |
|
20 | 20 | import org.htmlunit.cyberneko.xerces.util.ErrorHandlerWrapper;
|
21 | 21 | import org.htmlunit.cyberneko.xerces.util.SAXMessageFormatter;
|
22 |
| -import org.htmlunit.cyberneko.xerces.util.XMLAttributesImpl; |
23 | 22 | import org.htmlunit.cyberneko.xerces.xni.Augmentations;
|
24 | 23 | import org.htmlunit.cyberneko.xerces.xni.NamespaceContext;
|
25 | 24 | import org.htmlunit.cyberneko.xerces.xni.QName;
|
|
42 | 41 | import org.xml.sax.SAXNotSupportedException;
|
43 | 42 | import org.xml.sax.SAXParseException;
|
44 | 43 | import org.xml.sax.XMLReader;
|
45 |
| -import org.xml.sax.ext.Attributes2; |
46 | 44 | import org.xml.sax.ext.LexicalHandler;
|
47 |
| -import org.xml.sax.ext.Locator2; |
48 | 45 | import org.xml.sax.ext.Locator2Impl;
|
49 | 46 |
|
50 | 47 | /**
|
@@ -145,7 +142,7 @@ public void startDocument(final XMLLocator locator, final String encoding, final
|
145 | 142 | // SAX2
|
146 | 143 | if (fContentHandler != null) {
|
147 | 144 | if (locator != null) {
|
148 |
| - fContentHandler.setDocumentLocator(new LocatorProxy(locator)); |
| 145 | + fContentHandler.setDocumentLocator(locator); |
149 | 146 | }
|
150 | 147 | // The application may have set the ContentHandler to null
|
151 | 148 | // within setDocumentLocator() so we need to check again.
|
@@ -1008,64 +1005,4 @@ public void reset() throws XNIException {
|
1008 | 1005 | // features
|
1009 | 1006 | fNamespaces = parserConfiguration_.getFeature(NAMESPACES);
|
1010 | 1007 | }
|
1011 |
| - |
1012 |
| - protected static final class LocatorProxy implements Locator2 { |
1013 |
| - |
1014 |
| - /** XML locator. */ |
1015 |
| - private final XMLLocator fLocator; |
1016 |
| - |
1017 |
| - // Constructs an XML locator proxy. |
1018 |
| - public LocatorProxy(final XMLLocator locator) { |
1019 |
| - fLocator = locator; |
1020 |
| - } |
1021 |
| - |
1022 |
| - /** |
1023 |
| - * {@inheritDoc} |
1024 |
| - */ |
1025 |
| - @Override |
1026 |
| - public String getPublicId() { |
1027 |
| - return fLocator.getPublicId(); |
1028 |
| - } |
1029 |
| - |
1030 |
| - /** |
1031 |
| - * {@inheritDoc} |
1032 |
| - */ |
1033 |
| - @Override |
1034 |
| - public String getSystemId() { |
1035 |
| - return fLocator.getExpandedSystemId(); |
1036 |
| - } |
1037 |
| - |
1038 |
| - /** |
1039 |
| - * {@inheritDoc} |
1040 |
| - */ |
1041 |
| - @Override |
1042 |
| - public int getLineNumber() { |
1043 |
| - return fLocator.getLineNumber(); |
1044 |
| - } |
1045 |
| - |
1046 |
| - /** |
1047 |
| - * {@inheritDoc} |
1048 |
| - */ |
1049 |
| - @Override |
1050 |
| - public int getColumnNumber() { |
1051 |
| - return fLocator.getColumnNumber(); |
1052 |
| - } |
1053 |
| - |
1054 |
| - /** |
1055 |
| - * {@inheritDoc} |
1056 |
| - */ |
1057 |
| - @Override |
1058 |
| - public String getXMLVersion() { |
1059 |
| - return fLocator.getXMLVersion(); |
1060 |
| - } |
1061 |
| - |
1062 |
| - /** |
1063 |
| - * {@inheritDoc} |
1064 |
| - */ |
1065 |
| - @Override |
1066 |
| - public String getEncoding() { |
1067 |
| - return fLocator.getEncoding(); |
1068 |
| - } |
1069 |
| - |
1070 |
| - } |
1071 | 1008 | }
|
0 commit comments