mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
12 lines
172 B
Java
12 lines
172 B
Java
// "Introduce local variable" "false"
|
|
class a {
|
|
Runnable a() {
|
|
return new Runnable() {
|
|
public void run() {
|
|
if(2+<caret>2 == 5) {}
|
|
}
|
|
};
|
|
}
|
|
}
|
|
|