[Nice-commit] Nice/regtest/java main.nice,1.1,1.2
Brought to you by:
bonniot
From: <bo...@us...> - 2004-02-19 09:44:11
|
Update of /cvsroot/nice/Nice/regtest/java In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14397/regtest/java Modified Files: main.nice Log Message: Make otherMethod public since it is used outside the package. It used to work only because the compiler did not detect it (fixed by the previous change to gnu.bytecode.ClassType.getPackageName) and the JVM neither because that part of the code was not executed. Index: main.nice =================================================================== RCS file: /cvsroot/nice/Nice/regtest/java/main.nice,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** main.nice 17 Oct 2003 15:25:50 -0000 1.1 --- main.nice 19 Feb 2004 09:33:51 -0000 1.2 *************** *** 11,13 **** --- 11,14 ---- void main(String[] args) { + jMethod(new SubJ(), new regtest.java.J.Other()); } |