Why do all scala vararg methods, when used from java, seem to accept a Seq of variables, and can't be used as java native vararg methods. Is this a bug?
For instance, Buffer
has method def append(elems: A*): Unit
. But in java it has another signature: void append(Seq<A>)
.