[Nice-commit] Nice NEWS,1.77,1.78
Brought to you by:
bonniot
From: Daniel B. <bo...@us...> - 2005-06-06 13:30:01
|
Update of /cvsroot/nice/Nice In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10953 Modified Files: NEWS Log Message: Announce wildcard types. Index: NEWS =================================================================== RCS file: /cvsroot/nice/Nice/NEWS,v retrieving revision 1.77 retrieving revision 1.78 diff -C2 -d -r1.77 -r1.78 *** NEWS 21 May 2005 16:24:58 -0000 1.77 --- NEWS 6 Jun 2005 13:29:50 -0000 1.78 *************** *** 61,64 **** --- 61,69 ---- * It is now possible to use Nice "interface" method from Java (that is, method signatures are preserved in interface bytecode). + * Unbounded wildcard type parameters are supported (as in Java 5). This + allows to avoid using type parameters when their value is not important. + For instance: + + boolean isShort(List<?> l) = l.size() < 10; -- |