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); } }