mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 09:39:37 +07:00
javac ignores problems caused by files located in wrong directories, IDEA reports them: try to search class by FQName when failed to resolve normally (IDEA-178376; IDEA-176179)
8 lines
141 B
Java
8 lines
141 B
Java
// "Replace with lambda" "true"
|
|
package mismatch;
|
|
|
|
interface CanceledStatus {
|
|
CanceledStatus NULL = () -> false;
|
|
|
|
boolean isCanceled();
|
|
} |