Skip to content

Commit e50e1d6

Browse files
committed
Fix ParenPad
1 parent 9df6fd0 commit e50e1d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/apache/commons/jxpath/JXPathContextFactory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)