mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-21 09:46:34 +07:00
b2a07e2eee
(cherry picked from commit 890ffa719208e467b1ba238d248dbbf102c71b76)
17 lines
241 B
Java
17 lines
241 B
Java
// "Add Exception to Method Signature" "true"
|
|
class C {
|
|
interface I {
|
|
void a();
|
|
}
|
|
|
|
{
|
|
Callable<I> i = () -> {
|
|
return new I() {
|
|
public void a() {
|
|
Thread.sl<caret>eep(2000);
|
|
}
|
|
};
|
|
};
|
|
}
|
|
}
|