Skip to content

Commit 82e43cb

Browse files
committed
fix for http://code.google.com/p/mybatis/issues/detail?id=293 . super.invoke should be out of the synchronized block
1 parent 8d46d26 commit 82e43cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/ibatis/executor/loader/ResultObjectProxy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,9 @@ public Object intercept(Object enhanced, Method method, Object[] args, MethodPro
122122
}
123123
}
124124
}
125-
return methodProxy.invokeSuper(enhanced, args);
126125
}
127126
}
127+
return methodProxy.invokeSuper(enhanced, args);
128128
} catch (Throwable t) {
129129
throw ExceptionUtil.unwrapThrowable(t);
130130
}

0 commit comments

Comments
 (0)