mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-25 17:12:40 +07:00
d990d75dba
GitOrigin-RevId: 5c7f8c478e7328df1646879ede977efd7465adf8
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() {}
|
|
};
|
|
}
|
|
} |