Skip to content

Commit

Permalink
✨ Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
lzhpo committed Apr 25, 2024
1 parent fa99bef commit 44b780a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ public static DiffObjectResult getDiffObjectResult(Object oldObject, Object newO

Map<String, Field> oldFieldMap = getFieldsMap(oldObjectClass);
Map<String, Field> newFieldMap = getFieldsMap(newObjectClass);
log.debug("Found {} field in old object, found {} field in new object", oldFieldMap.size(), newFieldMap.size());

oldFieldMap.forEach((oldFieldName, oldField) -> {
Object oldValue = ReflectUtil.getFieldValue(oldObject, oldFieldName);
Expand Down

0 comments on commit 44b780a

Please sign in to comment.