mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
9 lines
277 B
Java
9 lines
277 B
Java
import java.util.Date;
|
|
import java.util.concurrent.locks.Condition;
|
|
|
|
abstract class Demo6Impl implements Condition {
|
|
@Override
|
|
public boolean awaitUntil(Date <warning descr="Not annotated parameter overrides @NotNull parameter">deadline</warning>) {
|
|
return false;
|
|
}
|
|
} |