mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-16 08:39:59 +07:00
11 lines
284 B
Java
11 lines
284 B
Java
public class Parameters {
|
|
public void subject(final int anObject) {
|
|
System.out.println(anObject);
|
|
System.out.println(anObject);
|
|
}
|
|
|
|
public void context() {
|
|
subject(1 +1);
|
|
subject(2 +1);
|
|
}
|
|
} |