mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-27 05:23:24 +07:00
2d9369d983
- changed behaviour in safe way by introducing new method to check that particular expression does not depend on committed PSI GitOrigin-RevId: f5ec732613cdafdcef8a1d48eb8d04135c634047
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() {}
|
|
};
|
|
}
|
|
} |