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
父節點 91ec6cc955
當前提交 947244b704
共有 1 個檔案被更改,包括 1 行新增1 行删除

查看文件

@ -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