From: Kevin W. <kev...@us...> - 2004-12-31 21:49:32
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Persister In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3481 Modified Files: AbstractEntityPersister.cs EntityPersister.cs Log Message: fixing xml comments and letting ReSharper do reformatting Index: AbstractEntityPersister.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Persister/AbstractEntityPersister.cs,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** AbstractEntityPersister.cs 9 Dec 2004 17:52:15 -0000 1.29 --- AbstractEntityPersister.cs 31 Dec 2004 21:49:23 -0000 1.30 *************** *** 2,17 **** using System.Collections; using System.Reflection; - using Iesi.Collections; ! using NHibernate.Cache; - using NHibernate.Cfg; - using NHibernate.Dialect; using NHibernate.Engine; - using NHibernate.Hql; [...1981 lines suppressed...] ! /// <param name="i"></param> ! /// <returns></returns> ! public abstract string[ ] GetSubclassPropertyColumnNames( int i ); ! ! /// <summary> ! /// ! /// </summary> ! /// <param name="i"></param> ! /// <returns></returns> ! public abstract string GetSubclassPropertyTableName( int i ); ! ! /// <summary> ! /// ! /// </summary> ! /// <param name="i"></param> ! /// <returns></returns> ! public abstract string GetSubclassPropertyName( int i ); } ! } \ No newline at end of file Index: EntityPersister.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Persister/EntityPersister.cs,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** EntityPersister.cs 4 Dec 2004 22:41:29 -0000 1.33 --- EntityPersister.cs 31 Dec 2004 21:49:23 -0000 1.34 *************** *** 2,9 **** using System.Collections; using System.Data; - using System.Text; - using Iesi.Collections; ! using NHibernate.Engine; using NHibernate.Hql; --- 2,7 ---- using System.Collections; [...2390 lines suppressed...] ! /// <param name="alias"></param> ! /// <param name="innerJoin"></param> ! /// <param name="includeSubclasses"></param> ! /// <returns></returns> ! public override SqlString WhereJoinFragment( string alias, bool innerJoin, bool includeSubclasses ) { return new SqlString( String.Empty ); *************** *** 1230,1234 **** - } ! } --- 1412,1415 ---- } ! } \ No newline at end of file |