Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Util
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24792/NHibernate/Util
Modified Files:
ReflectHelper.cs
Log Message:
Added dummy formula class, fixed small typo, and foo test entity. Found another quoting problem.
Index: ReflectHelper.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Util/ReflectHelper.cs,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** ReflectHelper.cs 9 Apr 2004 16:18:01 -0000 1.9
--- ReflectHelper.cs 13 Apr 2004 10:25:46 -0000 1.10
***************
*** 25,29 ****
property.SetValue(target, value, new object[0]);
} catch (Exception e) {
! throw new PropertyAccessException(e, "Exception occurrded", true, clazz, propertyName);
}
}
--- 25,29 ----
property.SetValue(target, value, new object[0]);
} catch (Exception e) {
! throw new PropertyAccessException(e, "Exception occurred", true, clazz, propertyName);
}
}
***************
*** 48,52 ****
return property.GetValue(target, new object[0]);
} catch (Exception e) {
! throw new PropertyAccessException(e, "Exception occurrded", false, clazz, propertyName);
}
}
--- 48,52 ----
return property.GetValue(target, new object[0]);
} catch (Exception e) {
! throw new PropertyAccessException(e, "Exception occurred", false, clazz, propertyName);
}
}
|