From: Michael D. <mik...@us...> - 2004-08-01 22:13:12
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/NHSpecificTest In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8527/NHibernate.Test/NHSpecificTest Modified Files: NodeFixture.cs Log Message: Removed old comments that no longer apply. Index: NodeFixture.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/NHSpecificTest/NodeFixture.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** NodeFixture.cs 9 Jun 2004 01:06:22 -0000 1.1 --- NodeFixture.cs 1 Aug 2004 22:13:03 -0000 1.2 *************** *** 85,103 **** Assert.IsTrue(levelOneNode2.PreviousNodes.Contains(startNode2), "Level One can be reached through Start Node"); - - // // TODO: get rid of this HACK that was used to find out what was causing the problem - // // lets test out my theory that the problem is the "END" node being loaded during flush by just loading - // // it before the flush. If it loads before the flush I don't think there will be any problems. See - // // http://jira.nhibernate.org:8080/browse/NH-20 for what I think is happening... - // foreach(Node node2 in levelOneNode2.DestinationNodes.Keys) - // { - // System.Diagnostics.Debug.WriteLine("touching node2's destinations = " + node2.DestinationNodes.Count); - // foreach(Node node3 in node2.DestinationNodes.Keys) - // { - // System.Diagnostics.Debug.WriteLine("touching node3's destinations - " + node3.DestinationNodes.Count); - // } - // } - - //foreach t2.Commit(); --- 85,88 ---- *************** *** 106,112 **** } - - - } } --- 91,94 ---- |