blob: 35cc7acec5e79d0a1588a7e06c8d669fffccfe9f [file] [log] [blame]
package com.siyeh.igtest.threading;
public class ThreadStartInConstructionInspection
{
private final Object lock = new Object();
{
new MyThread(new Runnable(){
public void run() {
}
}).start();
}
public ThreadStartInConstructionInspection() {
new Thread().start();
}
}