mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 06:20:54 +07:00
14 lines
239 B
Java
14 lines
239 B
Java
|
|
class Bug {
|
|
Bug(String s) {}
|
|
|
|
void m(String s) {
|
|
String str = s.substring(1);
|
|
new Bug(str) {
|
|
@Override
|
|
public String toString() {
|
|
return str;
|
|
}
|
|
};
|
|
}
|
|
} |