[Nice-commit] Nice/src/bossa/syntax JavaClasses.java,1.43,1.44
Brought to you by:
bonniot
From: <bo...@us...> - 2003-12-23 11:30:11
|
Update of /cvsroot/nice/Nice/src/bossa/syntax In directory sc8-pr-cvs1:/tmp/cvs-serv15523/src/bossa/syntax Modified Files: JavaClasses.java Log Message: Do not cache the object constructor across restarts of the compiler, since that would make its type invalid. Index: JavaClasses.java =================================================================== RCS file: /cvsroot/nice/Nice/src/bossa/syntax/JavaClasses.java,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** JavaClasses.java 16 Dec 2003 12:34:33 -0000 1.43 --- JavaClasses.java 23 Dec 2003 11:30:07 -0000 1.44 *************** *** 212,215 **** --- 212,216 ---- retyped = new HashMap(); knownMethods = new HashMap(); + objectConstructor = null; } |