Fixes the reflection warning that was introduced with #630.
There are only two different types that the library can pass to the javax.xml.parsers.SAXParser. It is either String or InputStream.
Unfortunately, I could not find a better way to fix the reflection warning just by refactoring the code a bit and have two explicit calls on the javax.xml.parsers.SAXParser/parse methods:
Fixes the reflection warning that was introduced with #630.
There are only two different types that the library can pass to the
javax.xml.parsers.SAXParser
. It is eitherString
orInputStream
.Unfortunately, I could not find a better way to fix the reflection warning just by refactoring the code a bit and have two explicit calls on the
javax.xml.parsers.SAXParser/parse
methods: