From c1bf650c12de85ffb11904dcbf02507f9e71ea47 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Sun, 23 Aug 2020 03:58:11 +0100 Subject: [PATCH] remove a replaced method --- .../Region/CoreModules/Scripting/LSLHttp/UrlModule.cs | 9 --------- OpenSim/Region/Framework/Interfaces/IUrlModule.cs | 3 +-- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs index 6edf46d6a2..d8795e27ea 100644 --- a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs +++ b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs @@ -795,15 +795,6 @@ namespace OpenSim.Region.CoreModules.Scripting.LSLHttp ScriptRemoved(itemID); } - public Dictionary GetUrlCountForHosts() - { - if (!m_enabled) - return new Dictionary(); - - lock (m_UrlMap) - return new Dictionary(m_countsPerSOG); - } - public int GetUrlCount(UUID groupID) { if (!m_enabled) diff --git a/OpenSim/Region/Framework/Interfaces/IUrlModule.cs b/OpenSim/Region/Framework/Interfaces/IUrlModule.cs index a6140f41a9..da95d0d7ff 100644 --- a/OpenSim/Region/Framework/Interfaces/IUrlModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IUrlModule.cs @@ -47,7 +47,6 @@ namespace OpenSim.Region.Framework.Interfaces void ScriptRemoved(UUID itemID); void ObjectRemoved(UUID objectID); - Dictionary GetUrlCountForHosts(); - int GetUrlCount(UUID host); + int GetUrlCount(UUID groupID); } }