return default empty set for saved refs

otherwise hydrated refs don't hydrate their children
This commit is contained in:
2024-06-30 23:00:43 +02:00
parent 17086ab207
commit 7b264c2f60

View File

@@ -31,7 +31,7 @@ public class ObjectMetadata implements Serializable {
@Getter
@Setter
private Set<String> _savedRefs = null;
private Set<String> _savedRefs = Collections.emptySet();
@Getter
private long _refcount = 0L;