From: Kevin W. <kev...@us...> - 2004-12-31 19:53:02
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Impl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12855 Modified Files: ScheduledCollectionRecreate.cs Log Message: fixing xml comments and letting ReSharper do reformatting Index: ScheduledCollectionRecreate.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Impl/ScheduledCollectionRecreate.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ScheduledCollectionRecreate.cs 29 Nov 2004 15:31:07 -0000 1.4 --- ScheduledCollectionRecreate.cs 31 Dec 2004 19:52:53 -0000 1.5 *************** *** 1,12 **** - using System; using NHibernate.Collection; using NHibernate.Engine; ! namespace NHibernate.Impl { /// <summary> /// A scheduled recreation of the Collection in the database. /// </summary> ! internal sealed class ScheduledCollectionRecreate : ScheduledCollectionAction { private PersistentCollection _collection; --- 1,11 ---- using NHibernate.Collection; using NHibernate.Engine; ! namespace NHibernate.Impl { /// <summary> /// A scheduled recreation of the Collection in the database. /// </summary> ! internal sealed class ScheduledCollectionRecreate : ScheduledCollectionAction { private PersistentCollection _collection; *************** *** 19,29 **** /// <param name="id">The identifier of the Collection owner.</param> /// <param name="session">The <see cref="ISessionImplementor"/> that the Action is occuring in.</param> ! public ScheduledCollectionRecreate(PersistentCollection collection, CollectionPersister persister, object id, ISessionImplementor session) ! : base(persister, id, session) { _collection = collection; } ! public override void Execute() { Persister.Softlock( Id ); --- 18,29 ---- /// <param name="id">The identifier of the Collection owner.</param> /// <param name="session">The <see cref="ISessionImplementor"/> that the Action is occuring in.</param> ! public ScheduledCollectionRecreate( PersistentCollection collection, CollectionPersister persister, object id, ISessionImplementor session ) ! : base( persister, id, session ) { _collection = collection; } ! /// <summary></summary> ! public override void Execute() { Persister.Softlock( Id ); *************** *** 31,33 **** } } ! } --- 31,33 ---- } } ! } \ No newline at end of file |