diff --git a/OpenSim/Framework/ObjectJobEngine.cs b/OpenSim/Framework/ObjectJobEngine.cs index 0094385c3f..89a700f9a3 100644 --- a/OpenSim/Framework/ObjectJobEngine.cs +++ b/OpenSim/Framework/ObjectJobEngine.cs @@ -116,7 +116,7 @@ namespace OpenSim.Framework /// /// Number of jobs waiting to be processed. /// - public int JobsWaiting { get { return m_jobQueue == null ? 0 : m_jobQueue.Count; } } + public int Count { get { return m_jobQueue == null ? 0 : m_jobQueue.Count; } } public void Cancel() {