mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-15 05:43:47 +07:00
8 lines
106 B
Java
8 lines
106 B
Java
public class Param {
|
|
private final int[] i;
|
|
|
|
public Param(int... i) {
|
|
this.i = i;
|
|
}
|
|
}
|