[Nice-commit] Nice/src/nice/tools/compiler interface.nice,1.10,1.11
Brought to you by:
bonniot
|
From: Daniel B. <bo...@us...> - 2005-03-28 11:35:23
|
Update of /cvsroot/nice/Nice/src/nice/tools/compiler In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1516/src/nice/tools/compiler Modified Files: interface.nice Log Message: Enforce private visibility for methods (no restriction yet). Index: interface.nice =================================================================== RCS file: /cvsroot/nice/Nice/src/nice/tools/compiler/interface.nice,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** interface.nice 11 Mar 2005 17:35:50 -0000 1.10 --- interface.nice 28 Mar 2005 11:35:15 -0000 1.11 *************** *** 75,81 **** /** * Determines the location of the nice runtime. ! * */ ! private ?String getNiceRuntime() { String resource = "/nice/tools/compiler/fun.class"; --- 75,81 ---- /** * Determines the location of the nice runtime. ! * */ ! ?String getNiceRuntime() { String resource = "/nice/tools/compiler/fun.class"; *************** *** 83,87 **** // Attempt to locate the file using the class loader. ?java.net.URL classUrl = dispatch.class.getResource(resource); ! if (classUrl == null) return null; --- 83,87 ---- // Attempt to locate the file using the class loader. ?java.net.URL classUrl = dispatch.class.getResource(resource); ! if (classUrl == null) return null; |