[Nice-commit] Nice/src/gnu/bytecode Method.java,1.9,1.10
Brought to you by:
bonniot
From: Artem Gr K. <ar...@us...> - 2005-05-21 16:25:08
|
Update of /cvsroot/nice/Nice/src/gnu/bytecode In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14762/src/gnu/bytecode Modified Files: Method.java Log Message: Emit method signatures into Nice interface classes. Index: Method.java =================================================================== RCS file: /cvsroot/nice/Nice/src/gnu/bytecode/Method.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Method.java 2 Mar 2004 20:21:11 -0000 1.9 --- Method.java 21 May 2005 16:24:59 -0000 1.10 *************** *** 242,246 **** { ! if (code == null) throw new Error("Method "+this+" has no code"); //return; --- 242,246 ---- { ! if (code == null && !isAbstract()) throw new Error("Method "+this+" has no code"); //return; |