stashin commit so Iulian can play with it

This commit is contained in:
Roland 2012-06-25 19:30:13 +02:00
parent e85d996fd5
commit be74eb835b
10 changed files with 935 additions and 45 deletions

View file

@ -0,0 +1,11 @@
package akka.japi;
import scala.collection.Seq;
public class JAPI {
public static <T> Seq<T> seq(T... ts) {
return Util.arrayToSeq(ts);
}
}