mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 17:18:24 +08:00
fix: QueryCondition 指针指向错误。
This commit is contained in:
parent
b1a5a1671f
commit
cbfb8a8f72
@ -308,7 +308,7 @@ public class QueryCondition implements CloneSupport<QueryCondition> {
|
||||
clone.before = clone.next = null;
|
||||
for (QueryCondition x = next; x != null; x = x.next) {
|
||||
clone.next = x.clone();
|
||||
clone.next.before = this;
|
||||
clone.next.before = clone;
|
||||
}
|
||||
return clone;
|
||||
} catch (CloneNotSupportedException e) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user