mirror of
https://codeup.aliyun.com/64f7d6b8ce01efaafef1e678/coal/coal.git
synced 2026-01-24 23:41:21 +08:00
bugfix
This commit is contained in:
@@ -11,6 +11,7 @@ import lombok.SneakyThrows;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
|
||||
import org.apache.commons.collections4.MapUtils;
|
||||
import org.apache.commons.lang3.ObjectUtils;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.apache.commons.lang3.reflect.FieldUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
@@ -124,7 +125,7 @@ public class PojoProcessor {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!seen.add(pojo)) {
|
||||
if (!seen.add(ObjectUtils.identityToString(pojo))) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user