File: trouble.md

package info (click to toggle)
google-auto-common-java 1.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 3,112 kB
  • sloc: java: 36,145; xml: 1,512; sh: 34; makefile: 6
file content (12 lines) | stat: -rw-r--r-- 382 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
# 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.