[Nice-commit] Nice/stdlib/nice/lang range.nice,1.5,1.6
Brought to you by:
bonniot
|
From: Daniel B. <bo...@us...> - 2005-04-02 12:51:43
|
Update of /cvsroot/nice/Nice/stdlib/nice/lang In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1191/stdlib/nice/lang Modified Files: range.nice Log Message: Added missing List method implementation. Index: range.nice =================================================================== RCS file: /cvsroot/nice/Nice/stdlib/nice/lang/range.nice,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** range.nice 1 Apr 2005 16:02:21 -0000 1.5 --- range.nice 2 Apr 2005 12:51:19 -0000 1.6 *************** *** 63,66 **** --- 63,68 ---- removeAt(index) = throw new UnsupportedOperationException(); removeAll(elems) = throw new UnsupportedOperationException(); + + set(index, elem) = throw new UnsupportedOperationException(); } |