From: Michael D. <mik...@us...> - 2004-08-01 14:58:54
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9542/NHibernate/Util Modified Files: ReflectHelper.cs Log Message: Fixed bug that caused an " " to be parsed in hql and removed extra code in ReflectHelper.ClassForName that was catching that. Index: ReflectHelper.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Util/ReflectHelper.cs,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** ReflectHelper.cs 28 May 2004 11:49:05 -0000 1.11 --- ReflectHelper.cs 1 Aug 2004 14:58:46 -0000 1.12 *************** *** 142,146 **** /// <returns>The Type for the Class.</returns> public static System.Type ClassForName(string name) { - if (name == " ") return null; return System.Type.GetType(name, true); } --- 142,145 ---- |