From: Michael D. <mik...@us...> - 2004-04-13 13:17:54
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Mapping In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23739/Mapping Modified Files: Formula.cs Log Message: Changed name of property from "Formul" to "FormulaString" because I have some code not checked in that is using that. Index: Formula.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Mapping/Formula.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Formula.cs 13 Apr 2004 10:25:46 -0000 1.1 --- Formula.cs 13 Apr 2004 13:03:54 -0000 1.2 *************** *** 17,23 **** public String getAlias() { return "f" + uniqueInteger.ToString() + StringHelper.Underscore; } ! public string Formul { ! get ! { return formula; } set { ! this.formula = value; } } } } \ No newline at end of file --- 17,21 ---- public String getAlias() { return "f" + uniqueInteger.ToString() + StringHelper.Underscore; } ! public string FormulaString { ! get { return formula; } set { this.formula = value; } } } } \ No newline at end of file |