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