Skip to content

Commit 7e68df0

Browse files
committed
Merge fix for #237 into branch 3.2.x (no tests)
1 parent 0ae18b8 commit 7e68df0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main/java/org/apache/ibatis/builder/annotation/MapperAnnotationBuilder.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,9 @@ public void parse() {
124124
for (Method method : methods) {
125125
try {
126126
parseStatement(method);
127+
if (!method.isBridge()) { // issue #237
128+
parseStatement(method);
129+
}
127130
} catch (IncompleteElementException e) {
128131
configuration.addIncompleteMethod(new MethodResolver(this, method));
129132
}

0 commit comments

Comments
 (0)