blob: 3ad0bc47bb379429e02ac34f17d0162770fb18c7 [file] [log] [blame]
package com.siyeh.igtest.threading;
public class SynchronizeOnThisInspection
{
private Object m_lock = new Object();
public void fooBar() throws InterruptedException {
synchronized (this)
{
this.wait();
this.notify();
this.notifyAll();
wait(1000L);
notify();
notifyAll();
System.out.println("");
}
}
}