Fix issue where stat samples were accidentally static, so that any additional stat with sampling would produce wrong results

cpu-performance
Justin Clark-Casey (justincc) 2013-06-18 22:49:49 +01:00
parent 0767523834
commit 768e8e363b
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ namespace OpenSim.Framework.Monitoring
/// <remarks>
/// Will be null if no measures of interest require samples.
/// </remarks>
private static Queue<double> m_samples;
private Queue<double> m_samples;
/// <summary>
/// Maximum number of statistical samples.