mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-22 15:38:42 +07:00
14 lines
201 B
Java
14 lines
201 B
Java
package x;
|
|
|
|
public interface I {
|
|
void ffffff();
|
|
}
|
|
|
|
class XI implements I {
|
|
public void ffffff() {
|
|
}
|
|
|
|
public void <warning descr="Method 'ffffff2()' is never used">ffffff2</warning>() {
|
|
}
|
|
}
|