We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c9e5b17 + 52d2345 commit 5d51f64Copy full SHA for 5d51f64
src/main/java/org/apache/ibatis/binding/MapperProxy.java
@@ -98,9 +98,8 @@ private MapperMethodInvoker cachedInvoker(Method method) throws Throwable {
98
try {
99
if (privateLookupInMethod == null) {
100
return new DefaultMethodInvoker(getMethodHandleJava8(method));
101
- } else {
102
- return new DefaultMethodInvoker(getMethodHandleJava9(method));
103
}
+ return new DefaultMethodInvoker(getMethodHandleJava9(method));
104
} catch (IllegalAccessException | InstantiationException | InvocationTargetException
105
| NoSuchMethodException e) {
106
throw new RuntimeException(e);
0 commit comments