1# Troubleshooting 2 3 4TODO 5 6## `equals()` is not returning what I expect 7 8This is usually a sign that one of your field types is not implementing `equals` 9as you expect. A typical offending class is [`JSONObject`] 10(https://developer.android.com/reference/org/json/JSONObject.html), which 11doesn't override `Object.equals()` and thus compromises your class's `equals` 12behavior as well. 13