From 1d02636c27de64f8acec5bb9a76f8659f0bfdd2b Mon Sep 17 00:00:00 2001 From: Dr Scofield Date: Fri, 22 May 2009 14:57:00 +0000 Subject: cleaning out warnings. NOTE: we currently have a gazillion warnings caused stuff flagged as "obsolete" (OGS1 stuff) --- what's up with that? --- .../MoneyModule/SampleMoneyModule.cs | 24 +++++++++++----------- 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'OpenSim/Region/ReplaceableModules/MoneyModule/SampleMoneyModule.cs') diff --git a/OpenSim/Region/ReplaceableModules/MoneyModule/SampleMoneyModule.cs b/OpenSim/Region/ReplaceableModules/MoneyModule/SampleMoneyModule.cs index cd68541..62d8f4b 100644 --- a/OpenSim/Region/ReplaceableModules/MoneyModule/SampleMoneyModule.cs +++ b/OpenSim/Region/ReplaceableModules/MoneyModule/SampleMoneyModule.cs @@ -79,7 +79,7 @@ namespace OpenSim.Region.ReplaceableModules.MoneyModule /// private Dictionary m_scenel = new Dictionary(); - private int m_stipend = 1000; + // private int m_stipend = 1000; private int ObjectCapacity = 45000; private int ObjectCount = 0; @@ -471,8 +471,8 @@ namespace OpenSim.Region.ReplaceableModules.MoneyModule public XmlRpcResponse quote_func(XmlRpcRequest request) { - Hashtable requestData = (Hashtable) request.Params[0]; - UUID agentId = UUID.Zero; + // Hashtable requestData = (Hashtable) request.Params[0]; + // UUID agentId = UUID.Zero; int amount = 0; Hashtable quoteResponse = new Hashtable(); XmlRpcResponse returnval = new XmlRpcResponse(); @@ -495,9 +495,9 @@ namespace OpenSim.Region.ReplaceableModules.MoneyModule public XmlRpcResponse buy_func(XmlRpcRequest request) { - Hashtable requestData = (Hashtable) request.Params[0]; - UUID agentId = UUID.Zero; - int amount = 0; + // Hashtable requestData = (Hashtable) request.Params[0]; + // UUID agentId = UUID.Zero; + // int amount = 0; XmlRpcResponse returnval = new XmlRpcResponse(); Hashtable returnresp = new Hashtable(); @@ -545,10 +545,10 @@ namespace OpenSim.Region.ReplaceableModules.MoneyModule { XmlRpcResponse ret = new XmlRpcResponse(); Hashtable retparam = new Hashtable(); - Hashtable requestData = (Hashtable) request.Params[0]; + // Hashtable requestData = (Hashtable) request.Params[0]; - UUID agentId = UUID.Zero; - int amount = 0; + // UUID agentId = UUID.Zero; + // int amount = 0; retparam.Add("success", true); ret.Value = retparam; @@ -581,10 +581,10 @@ namespace OpenSim.Region.ReplaceableModules.MoneyModule return returnfunds; } - private void SetLocalFundsForAgentID(UUID AgentID, int amount) - { + // private void SetLocalFundsForAgentID(UUID AgentID, int amount) + // { - } + // } #endregion -- cgit v1.1