From 2e98ccbe460b09cddf55ed8a6b6aa8fe2cfcfc92 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Fri, 8 Jan 2021 16:09:45 +0000 Subject: [PATCH] missing change on objectjobengine --- OpenSim/Framework/ObjectJobEngine.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() {