mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
6 lines
211 B
Java
6 lines
211 B
Java
interface A {
|
|
default String <error descr="Default method 'toString' overrides a member of 'java.lang.Object'">toString</error>() {
|
|
return "";
|
|
}
|
|
default void finalize() throws Throwable { }
|
|
} |