mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
11 lines
213 B
Java
11 lines
213 B
Java
class Foo {
|
|
@SuppressWarnings({"FieldCanBeLocal"})
|
|
private final String text;
|
|
public Foo(String text) {
|
|
this.text = text;
|
|
}
|
|
public void doSomething(int i) {
|
|
System.out.println(i+<caret>i);
|
|
}
|
|
}
|