aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-01-05 20:58:57 +0000
committerJustin Clarke Casey2009-01-05 20:58:57 +0000
commitb077723a201428de54fb4e68eabf7f2cd66c7cca (patch)
treeffb6365fd9ba4fd6836e1fbc6c61fca1bdf590d6 /OpenSim/Region/Environment
parent* Stop bothering to populate and retrieve the parent local ids for MSSQL, as ... (diff)
downloadopensim-SC_OLD-b077723a201428de54fb4e68eabf7f2cd66c7cca.zip
opensim-SC_OLD-b077723a201428de54fb4e68eabf7f2cd66c7cca.tar.gz
opensim-SC_OLD-b077723a201428de54fb4e68eabf7f2cd66c7cca.tar.bz2
opensim-SC_OLD-b077723a201428de54fb4e68eabf7f2cd66c7cca.tar.xz
* minor: remove some mono compiler warnings
Diffstat (limited to 'OpenSim/Region/Environment')
-rw-r--r--OpenSim/Region/Environment/Modules/Communications/REST/RESTInterregionComms.cs8
1 files changed, 3 insertions, 5 deletions
diff --git a/OpenSim/Region/Environment/Modules/Communications/REST/RESTInterregionComms.cs b/OpenSim/Region/Environment/Modules/Communications/REST/RESTInterregionComms.cs
index 3e8599b..4daaab4 100644
--- a/OpenSim/Region/Environment/Modules/Communications/REST/RESTInterregionComms.cs
+++ b/OpenSim/Region/Environment/Modules/Communications/REST/RESTInterregionComms.cs
@@ -642,13 +642,11 @@ namespace OpenSim.Region.Environment.Modules.Communications.REST
642 protected virtual void DoDelete(Hashtable request, Hashtable responsedata, UUID id, string action, ulong regionHandle) 642 protected virtual void DoDelete(Hashtable request, Hashtable responsedata, UUID id, string action, ulong regionHandle)
643 { 643 {
644 //Console.WriteLine(" >>> DoDelete action:" + action + "; regionHandle:" + regionHandle); 644 //Console.WriteLine(" >>> DoDelete action:" + action + "; regionHandle:" + regionHandle);
645 bool result = true; 645
646 if (action.Equals("release")) 646 if (action.Equals("release"))
647 { 647 m_localBackend.SendReleaseAgent(regionHandle, id, "");
648 result = m_localBackend.SendReleaseAgent(regionHandle, id, "");
649 }
650 else 648 else
651 result = m_localBackend.SendCloseAgent(regionHandle, id); 649 m_localBackend.SendCloseAgent(regionHandle, id);
652 650
653 responsedata["int_response_code"] = 200; 651 responsedata["int_response_code"] = 200;
654 responsedata["str_response_string"] = "OpenSim agent " + id.ToString(); 652 responsedata["str_response_string"] = "OpenSim agent " + id.ToString();