[Nice-commit] Nice/testsuite/lib/java/util collections.testsuite,1.13,1.14
Brought to you by:
bonniot
|
From: Arjan B. <ar...@us...> - 2005-03-01 18:56:33
|
Update of /cvsroot/nice/Nice/testsuite/lib/java/util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17429/F:/nice/testsuite/lib/java/util Modified Files: collections.testsuite Log Message: Removed deprecated pattern syntax from testsuite. Index: collections.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/lib/java/util/collections.testsuite,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** collections.testsuite 15 Jan 2004 21:39:20 -0000 1.13 --- collections.testsuite 1 Mar 2005 18:56:23 -0000 1.14 *************** *** 60,64 **** <T,U,V | U <: T, V <: T> Set<T> myintersection(Set<U>, Set<V>); ! <T,U,V> myintersection(s1@Set, s2@Set) { Set<T> res = new HashSet(); if (s1.size() < s2.size()) { --- 60,64 ---- <T,U,V | U <: T, V <: T> Set<T> myintersection(Set<U>, Set<V>); ! <T,U,V> myintersection(Set s1, Set s2) { Set<T> res = new HashSet(); if (s1.size() < s2.size()) { |