Sign in
chromium
/
external
/
github.com
/
google
/
error-prone
/
b4c55352f99aee460e730bd117fe2bf1234d4d2d
/
.
/
docs
/
bugpattern
/
DeadThread.md
blob: b01dfa36e925f950410ffd7a060d4f679d7f6931 [
file
] [
view
]
The
Thread
is
created
with
`new`
,
but
is
never started
and
is
not
otherwise
captured
.
Threads
must be started
with
`start()`
to actually execute
.