aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-06-18 22:49:49 +0100
committerJustin Clark-Casey (justincc)2013-06-18 22:49:49 +0100
commit768e8e363bfb0aedc6edc2e6c1dbf35e1e66b531 (patch)
tree9ac572f9042fb21466ff785c1fac53cc517b594a
parentFix other places when saving scripts or notecards in prim inventories where m... (diff)
downloadopensim-SC_OLD-768e8e363bfb0aedc6edc2e6c1dbf35e1e66b531.zip
opensim-SC_OLD-768e8e363bfb0aedc6edc2e6c1dbf35e1e66b531.tar.gz
opensim-SC_OLD-768e8e363bfb0aedc6edc2e6c1dbf35e1e66b531.tar.bz2
opensim-SC_OLD-768e8e363bfb0aedc6edc2e6c1dbf35e1e66b531.tar.xz
Fix issue where stat samples were accidentally static, so that any additional stat with sampling would produce wrong results
-rw-r--r--OpenSim/Framework/Monitoring/Stats/Stat.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Monitoring/Stats/Stat.cs b/OpenSim/Framework/Monitoring/Stats/Stat.cs
index 2e7665f..69ac0a5 100644
--- a/OpenSim/Framework/Monitoring/Stats/Stat.cs
+++ b/OpenSim/Framework/Monitoring/Stats/Stat.cs
@@ -95,7 +95,7 @@ namespace OpenSim.Framework.Monitoring
95 /// <remarks> 95 /// <remarks>
96 /// Will be null if no measures of interest require samples. 96 /// Will be null if no measures of interest require samples.
97 /// </remarks> 97 /// </remarks>
98 private static Queue<double> m_samples; 98 private Queue<double> m_samples;
99 99
100 /// <summary> 100 /// <summary>
101 /// Maximum number of statistical samples. 101 /// Maximum number of statistical samples.