mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-26 11:06:22 +07:00
9 lines
147 B
Java
9 lines
147 B
Java
class Test {
|
|
public void test(String anObject) {
|
|
System.out.println(anObject);
|
|
}
|
|
|
|
public void use() {
|
|
test("");
|
|
}
|
|
} |