Use XMLInputFactory.newInstance() instead of newFactory()

As newFactory() is errornously marked as deprecated in Java 9 or
higher. See also https://bugs.openjdk.java.net/browse/JDK-8183519
This commit is contained in:
Florian Schmaus 2019-07-19 19:22:51 +02:00
parent 91ec6cc955
commit 947244b704
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ import org.jivesoftware.smack.xml.XmlPullParserFactory;
public class StaxXmlPullParserFactory implements XmlPullParserFactory {
private static final XMLInputFactory xmlInputFactory = XMLInputFactory.newFactory();
private static final XMLInputFactory xmlInputFactory = XMLInputFactory.newInstance();
static {
// XPP3 appears to coalescing hence we need to configure our StAX parser to also return all available text on