mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-12 10:06:52 +07:00
13 lines
195 B
Java
13 lines
195 B
Java
// "Introduce local variable" "true"
|
|
class a {
|
|
void a() {
|
|
list.add(new Runnable(){
|
|
@Override
|
|
public void run() {
|
|
int i = Integer.parseInt("10");
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|