blob: 37ae472d31b93e73f52f4d0a0a7bd2d241081295 [file] [log] [blame]
package com.siyeh.igtest.threading;
public class WaitWithoutNotifyInspection {
private final Object x = new Object();
public void foo() throws InterruptedException {
x.wait();
x.wait(100L);
}
}