revert accidental change to MemoryWatchdog stat calculation in previous b1b4687

0.7.5-pf-bulletsim
Justin Clark-Casey (justincc) 2013-01-10 01:30:00 +00:00
parent 2563553f80
commit 30eded2bda
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ namespace OpenSim.Framework.Monitoring
/// </summary>
public static double LastMemoryChurn
{
get { if (m_samples.Count > 0) return m_samples.First(); else return 0; }
get { if (m_samples.Count > 0) return m_samples.Last(); else return 0; }
}
/// <summary>