This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-jxpath.git
commit e50e1d65e2ab17b79e69ac58602b988b2152a0c9 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Jan 21 14:39:07 2025 -0500 Fix ParenPad --- src/main/java/org/apache/commons/jxpath/JXPathContextFactory.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/jxpath/JXPathContextFactory.java b/src/main/java/org/apache/commons/jxpath/JXPathContextFactory.java index d54135f..395bdb4 100644 --- a/src/main/java/org/apache/commons/jxpath/JXPathContextFactory.java +++ b/src/main/java/org/apache/commons/jxpath/JXPathContextFactory.java @@ -53,7 +53,7 @@ public abstract class JXPathContextFactory { method is called the second time ( cache the result of finding the default impl ) */ - private static final String FACTORY_IMPL_NAME = findFactory( FACTORY_NAME_PROPERTY, DEFAULT_FACTORY_CLASS ); + private static final String FACTORY_IMPL_NAME = findFactory(FACTORY_NAME_PROPERTY, DEFAULT_FACTORY_CLASS); /** * Create a new JXPathContextFactory. @@ -101,7 +101,7 @@ public abstract class JXPathContextFactory { public static JXPathContextFactory newInstance() { JXPathContextFactory factoryImpl; try { - final Class clazz = ClassLoaderUtil.getClass( FACTORY_IMPL_NAME, true ); + final Class clazz = ClassLoaderUtil.getClass(FACTORY_IMPL_NAME, true); factoryImpl = (JXPathContextFactory) clazz.getConstructor().newInstance(); } catch (final ReflectiveOperationException ie) {