[Nice-commit] Nice/src/nice/tools/code TypeImport.java,1.3,1.4
Brought to you by:
bonniot
|
From: <ar...@us...> - 2003-03-20 23:01:59
|
Update of /cvsroot/nice/Nice/src/nice/tools/code
In directory sc8-pr-cvs1:/tmp/cvs-serv12247/F:/nice/src/nice/tools/code
Modified Files:
TypeImport.java
Log Message:
fix of bug causing a stacktrace in the compiler when a name of a existing class is mistyped by a wrong case.
Index: TypeImport.java
===================================================================
RCS file: /cvsroot/nice/Nice/src/nice/tools/code/TypeImport.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** TypeImport.java 8 Feb 2003 16:13:21 -0000 1.3
--- TypeImport.java 20 Mar 2003 23:01:50 -0000 1.4
***************
*** 158,161 ****
--- 158,162 ----
}
catch(ClassNotFoundException e) {} // The class does not exist.
+ catch(NoClassDefFoundError e){} // idem
stringToReflectClass.put(className, c);
|