Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Util
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1955/NHibernate/Util
Modified Files:
ReflectHelper.cs
Log Message:
Modified more exceptions to not be "throw e" and instead just be "throw"
Moved internal fields from IList to ISet where applicable.
Fixed generation of sql from hql that was causing spacing problems with
MySql.
Index: ReflectHelper.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Util/ReflectHelper.cs,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** ReflectHelper.cs 22 Nov 2004 03:52:18 -0000 1.18
--- ReflectHelper.cs 4 Dec 2004 22:41:30 -0000 1.19
***************
*** 104,108 ****
}
! throw pnfe;
}
}
--- 104,108 ----
}
! throw;
}
}
|