Reports calls to run() on java.lang.Thread or any of its subclasses.
run()
java.lang.Thread
While occasionally intended, this is usually a mistake, because run() doesn't start a new thread. To execute the code in a separate thread, start() should be used.
start()