Fix compilation failure in a test class when using JDK 1.5.
The XPathFactory.newInstance(String, String, ClassLoader) method is @since Java 1.6.

From code review, the only difference between old and new methods is presence of the second argument, "com.sun.org.apache.xpath.internal.jaxp.XPathFactoryImpl". The null class loader is interpreted as TCCL by both methods, so there is no difference.
This test is @Ignore'd so it is not really tested.
2 files changed