AXmlResourceParser.setInput(): implemented using open() method.

This commit is contained in:
Ryszard Wiśniewski 2010-03-23 16:56:40 +01:00
parent 6c375dabed
commit 795591f935

View File

@ -404,7 +404,7 @@ public class AXmlResourceParser implements XmlResourceParser {
/////////////////////////////////// dummies /////////////////////////////////// dummies
public void setInput(InputStream stream, String inputEncoding) throws XmlPullParserException { public void setInput(InputStream stream, String inputEncoding) throws XmlPullParserException {
throw new XmlPullParserException(E_NOT_SUPPORTED); open(stream);
} }
public void setInput(Reader reader) throws XmlPullParserException { public void setInput(Reader reader) throws XmlPullParserException {