[Nice-commit] Nice/regtest/java/J Other.java,1.1,1.2
Brought to you by:
bonniot
From: <bo...@us...> - 2004-02-19 09:44:09
|
Update of /cvsroot/nice/Nice/regtest/java/J In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14397/regtest/java/J Modified Files: Other.java 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: Other.java =================================================================== RCS file: /cvsroot/nice/Nice/regtest/java/J/Other.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Other.java 28 Nov 2003 14:01:30 -0000 1.1 --- Other.java 19 Feb 2004 09:33:49 -0000 1.2 *************** *** 2,5 **** public class Other { ! void otherMethod() {} } --- 2,5 ---- public class Other { ! public void otherMethod() {} } |