You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One thing we often do in a domain class is to declare a member collection as for example Sets.newHashSet() and in the getter we return a defensive copy like ImmutableSet.copy(this.myset) to prevent callers from inadvertently modifying the domain data.
This leads java-object-diff to throw an exception about incompatible object types. Will this case be supported in a future version ?