blob: 9c546cbe1e0bd7537edd645bd1fab0c127fc9f08 [file] [log] [blame]
package com.siyeh.igtest.threading;
public class ThreadRunInspection
{
public void foo()
{
final Runnable runnable = new Runnable()
{
public void run()
{
}
};
final Thread thread = new Thread(runnable);
thread.run();
final MyThread thread2 = new MyThread(runnable);
thread2.run();
}
}