mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-21 14:37:45 +07:00
13 lines
550 B
Java
13 lines
550 B
Java
import java.util.Date;
|
|
import java.util.concurrent.locks.Condition;
|
|
|
|
abstract class Demo6Impl implements Condition {
|
|
@Override
|
|
public boolean awaitUntil(Date deadline) {
|
|
/* This is considered to be an error in Eclipse: The second parameter is not annotated in the JDK but
|
|
* only through the external annotations in IntelliJ. Thus, Eclipse is complaining:
|
|
* Illegal redefinition of parameter unit, inherited method from ExecutorService does not constrain this parameter
|
|
*/
|
|
return false;
|
|
}
|
|
} |