This commit is contained in:
Dmitry Jemerov
2009-09-11 18:08:20 +04:00
parent e8c11a9fc5
commit e203e9c06e
17 changed files with 11 additions and 25 deletions
@@ -0,0 +1,8 @@
class Test<A,B,C> {
private Test() {
}
public static <A, B, C> Test<A, B, C> newTest() {
return new Test<A, B, C>();
}
}