fix: QueryCondition 指针指向错误。

This commit is contained in:
Suomm 2023-06-10 13:59:57 +08:00
parent b1a5a1671f
commit cbfb8a8f72

View File

@ -308,7 +308,7 @@ public class QueryCondition implements CloneSupport<QueryCondition> {
clone.before = clone.next = null; clone.before = clone.next = null;
for (QueryCondition x = next; x != null; x = x.next) { for (QueryCondition x = next; x != null; x = x.next) {
clone.next = x.clone(); clone.next = x.clone();
clone.next.before = this; clone.next.before = clone;
} }
return clone; return clone;
} catch (CloneNotSupportedException e) { } catch (CloneNotSupportedException e) {