private void setUuid(int.. uuid)
{
// method stuff
}
The Java 6 compiler complains when I try to use the syntax above .. Isn't the var-arg above valid ?
According to the 1.5 language docs it's three periods:
private void setUuid(int... uuid)
{
// method stuff
}
int.