revert accidental change to MemoryWatchdog stat calculation in previous b1b4687

user_profiles
Justin Clark-Casey (justincc) 2013-01-10 01:30:00 +00:00
parent b1b4687250
commit 84407e322f
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>