Update of /cvsroot/nhibernate/nhibernate/src/NHibernate
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18403/NHibernate
Modified Files:
HibernateException.cs
Log Message:
HQL looks like finished. Changed string.Empty to String.Empty.
Index: HibernateException.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/HibernateException.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** HibernateException.cs 29 Apr 2004 14:00:51 -0000 1.2
--- HibernateException.cs 30 Apr 2004 14:06:45 -0000 1.3
***************
*** 9,13 ****
public class HibernateException : ApplicationException {
! public HibernateException(Exception e) : base(string.Empty, e) { }
public HibernateException(string str, Exception e) : base(str, e) { }
--- 9,13 ----
public class HibernateException : ApplicationException {
! public HibernateException(Exception e) : base(String.Empty, e) { }
public HibernateException(string str, Exception e) : base(str, e) { }
|