[Nice-commit] Nice/stdlib/nice/io file.nice,1.4,1.5
Brought to you by:
bonniot
|
From: Daniel B. <bo...@us...> - 2005-04-11 08:53:37
|
Update of /cvsroot/nice/Nice/stdlib/nice/io In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29171/stdlib/nice/io Modified Files: file.nice Log Message: Avoid using a class retyping for importing the class, since that create problems with the class fully qualified name. Using Java package import for now. Index: file.nice =================================================================== RCS file: /cvsroot/nice/Nice/stdlib/nice/io/file.nice,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** file.nice 28 Mar 2005 11:35:14 -0000 1.4 --- file.nice 11 Apr 2005 08:53:11 -0000 1.5 *************** *** 26,30 **** import nice.functional; ! class File = native java.io.File; /** Path concatenation */ --- 26,30 ---- import nice.functional; ! import java.io.*; /** Path concatenation */ |