From: <aye...@us...> - 2008-10-15 12:03:20
|
Revision: 3857 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=3857&view=rev Author: ayenderahien Date: 2008-10-15 12:03:06 +0000 (Wed, 15 Oct 2008) Log Message: ----------- minor - fixing spelling mistake Modified Paths: -------------- trunk/nhibernate/src/NHibernate/Loader/Loader.cs Modified: trunk/nhibernate/src/NHibernate/Loader/Loader.cs =================================================================== --- trunk/nhibernate/src/NHibernate/Loader/Loader.cs 2008-10-15 11:55:40 UTC (rev 3856) +++ trunk/nhibernate/src/NHibernate/Loader/Loader.cs 2008-10-15 12:03:06 UTC (rev 3857) @@ -1688,10 +1688,10 @@ protected IList DoList(ISessionImplementor session, QueryParameters queryParameters) { bool statsEnabled = Factory.Statistics.IsStatisticsEnabled; - var stopWath = new Stopwatch(); + var stopWatch = new Stopwatch(); if (statsEnabled) { - stopWath.Start(); + stopWatch.Start(); } IList result; @@ -1711,8 +1711,8 @@ } if (statsEnabled) { - stopWath.Stop(); - Factory.StatisticsImplementor.QueryExecuted(QueryIdentifier, result.Count, stopWath.Elapsed); + stopWatch.Stop(); + Factory.StatisticsImplementor.QueryExecuted(QueryIdentifier, result.Count, stopWatch.Elapsed); } return result; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |