WordPress-FluxC-Android
WordPress-FluxC-Android copied to clipboard
PostModel breaks the equals/hashcode contract
PostModel.java overrides the equals method, but does not override the hashcode. This breaks the equals-hashcode contract and can result in hard to find bugs.
Consider using EqualsVerifier or a similar library or converting the model into a Kotlin data class if possible.