resources.report.rules.findbugs.DM_USELESS_THREAD.html Maven / Gradle / Ivy
DM_USELESS_THREAD
Dm: A thread was created using the default empty run method (DM_USELESS_THREAD)
This method creates a thread without specifying a run method either by deriving from the Thread class, or
by passing a Runnable object. This thread, then, does nothing but waste time.