File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/org/apache/commons/jxpath Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ public abstract class JXPathContextFactory {
5353 method is called the second time ( cache the result of
5454 finding the default impl )
5555 */
56- private static final String FACTORY_IMPL_NAME = findFactory ( FACTORY_NAME_PROPERTY , DEFAULT_FACTORY_CLASS );
56+ private static final String FACTORY_IMPL_NAME = findFactory (FACTORY_NAME_PROPERTY , DEFAULT_FACTORY_CLASS );
5757
5858 /**
5959 * Create a new JXPathContextFactory.
@@ -101,7 +101,7 @@ protected JXPathContextFactory () {
101101 public static JXPathContextFactory newInstance () {
102102 JXPathContextFactory factoryImpl ;
103103 try {
104- final Class clazz = ClassLoaderUtil .getClass ( FACTORY_IMPL_NAME , true );
104+ final Class clazz = ClassLoaderUtil .getClass (FACTORY_IMPL_NAME , true );
105105 factoryImpl = (JXPathContextFactory ) clazz .getConstructor ().newInstance ();
106106 }
107107 catch (final ReflectiveOperationException ie ) {
You can’t perform that action at this time.
0 commit comments