mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
18 lines
403 B
Java
18 lines
403 B
Java
|
|
class CL {
|
|
void f() {
|
|
new Runnable() {
|
|
|
|
public void run() {
|
|
//To change body of implemented methods use File | Settings | File Templates.
|
|
}
|
|
<caret>
|
|
public int hashCode() {
|
|
return super.hashCode(); //To change body of overridden methods use File | Settings | File Templates.
|
|
}
|
|
}.run();
|
|
}
|
|
}
|
|
|
|
|