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
Since #331, equality and hashcode checks on ALL Markdown entities are meaningless, since all those models are value classes wrapping CommonMark models. CommonMark models do NOT implement equals and hashcode. This is potentially problematic for Compose usages, and many other cases.
We need to revert #331, since value classes do not support custom equals and hashcode implementations and we cannot rely on CommonMark models. We need true, content-based equals and hashcodes.
The text was updated successfully, but these errors were encountered:
Since #331, equality and hashcode checks on ALL Markdown entities are meaningless, since all those models are value classes wrapping CommonMark models. CommonMark models do NOT implement equals and hashcode. This is potentially problematic for Compose usages, and many other cases.
We need to revert #331, since value classes do not support custom equals and hashcode implementations and we cannot rely on CommonMark models. We need true, content-based equals and hashcodes.
The text was updated successfully, but these errors were encountered: