mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 19:38:50 +07:00
GitOrigin-RevId: 1f370ec15dad0027f8625131c67795e15586edd5
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;
|
|
}
|
|
};
|
|
}
|
|
} |