Sign in
chromium
/
external
/
github.com
/
google
/
error-prone
/
refs/heads/copybara-sync
/
.
/
docs
/
bugpattern
/
ObjectToString.md
blob: 9c509aa17c630e9079e5969624e2048f9d4ed203 [
file
] [
log
] [
blame
] [
view
] [
edit
]
Calling
`toString`
on objects that don
't override `toString()` doesn'
t provide
useful information
(
just the
class
name
and
the
`hashCode()`
).
Consider
overriding toString
()
function
to
return
a meaningful
String
describing
the
object
.