mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-31 22:56:53 +07:00
123242c4b2
GitOrigin-RevId: fd52ace3d7a32ecd02c2c5ab90e077967604c15e
9 lines
167 B
Java
9 lines
167 B
Java
// "Replace explicit type with 'var'" "true"
|
|
class MyTest {
|
|
private void m() {
|
|
var r = new Runnable() {
|
|
@Override
|
|
public void run() {}
|
|
};
|
|
}
|
|
} |