mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 00:40:28 +07:00
11 lines
283 B
Java
11 lines
283 B
Java
class TestRefactoring {
|
|
public TestRefactoring() {
|
|
Runnable r = new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
Integer to<caret>Field = new Integer("0");
|
|
System.out.println(toField);
|
|
}
|
|
};
|
|
}
|
|
} |