[Nice-commit] Nice/src/gnu/bytecode ClassFileInput.java,1.5,1.6
Brought to you by:
bonniot
From: <bo...@us...> - 2003-11-27 00:54:53
|
Update of /cvsroot/nice/Nice/src/gnu/bytecode In directory sc8-pr-cvs1:/tmp/cvs-serv10544/src/gnu/bytecode Modified Files: ClassFileInput.java Log Message: Moved the type registration to a more logical place, in ClassFileInput. Index: ClassFileInput.java =================================================================== RCS file: /cvsroot/nice/Nice/src/gnu/bytecode/ClassFileInput.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ClassFileInput.java 27 Nov 2003 00:21:20 -0000 1.5 --- ClassFileInput.java 27 Nov 2003 00:54:43 -0000 1.6 *************** *** 69,72 **** --- 69,73 ---- { ctype = new ClassType(name); + Type.registerTypeForName(name, ctype); ctype.collectable = true; } |