Update of /cvsroot/nice/Nice/stdlib/nice/lang
In directory sc8-pr-cvs1:/tmp/cvs-serv19617/stdlib/nice/lang
Modified Files:
java.nice
Log Message:
Commented out references to LinkedHashSet, which is a JDK 1.4 feature.
Index: java.nice
===================================================================
RCS file: /cvsroot/nice/Nice/stdlib/nice/lang/java.nice,v
retrieving revision 1.34
retrieving revision 1.35
diff -C2 -d -r1.34 -r1.35
*** java.nice 30 Aug 2003 23:06:07 -0000 1.34
--- java.nice 31 Aug 2003 11:33:04 -0000 1.35
***************
*** 193,200 ****
--- 193,202 ----
<T> HashSet<T> HashSet(int,float) = native new HashSet(int,float);
<T,U | U <: T> HashSet<T> HashSet(Collection<U>) = native new HashSet(Collection);
+ /* JDK1.4
<T> LinkedHashSet<T> LinkedHashSet() = native new LinkedHashSet();
<T> LinkedHashSet<T> LinkedHashSet(int) = native new LinkedHashSet(int);
<T> LinkedHashSet<T> LinkedHashSet(int,float) = native new LinkedHashSet(int,float);
<T,U | U <: T> LinkedHashSet<T> LinkedHashSet(Collection<U>) = native new LinkedHashSet(Collection);
+ JDK1.4 */
<K,V> HashMap<K,V> HashMap() = native new HashMap();
<K,V> HashMap<K,V> HashMap(int) = native new HashMap(int);
|