You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
382 B
382 B
Troubleshooting
TODO
equals()
is not returning what I expect
This is usually a sign that one of your field types is not implementing equals
as you expect. A typical offending class is [JSONObject
]
(https://developer.android.com/reference/org/json/JSONObject.html), which
doesn't override Object.equals()
and thus compromises your class's equals
behavior as well.