aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authordiva2009-03-19 03:33:20 +0000
committerdiva2009-03-19 03:33:20 +0000
commit247a25a7fe0ab5ed42e00d5c8db630b5dd2ddf4e (patch)
tree1d9026ef2dc1fcc4588e4b149371014fa5d50504 /OpenSim
parent* Apply http://opensimulator.org/mantis/view.php?id=3311 (diff)
downloadopensim-SC_OLD-247a25a7fe0ab5ed42e00d5c8db630b5dd2ddf4e.zip
opensim-SC_OLD-247a25a7fe0ab5ed42e00d5c8db630b5dd2ddf4e.tar.gz
opensim-SC_OLD-247a25a7fe0ab5ed42e00d5c8db630b5dd2ddf4e.tar.bz2
opensim-SC_OLD-247a25a7fe0ab5ed42e00d5c8db630b5dd2ddf4e.tar.xz
Making a couple of methods public.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/CoreModules/Communications/REST/RESTInterregionComms.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/Communications/REST/RESTInterregionComms.cs b/OpenSim/Region/CoreModules/Communications/REST/RESTInterregionComms.cs
index 258f276..32eedef 100644
--- a/OpenSim/Region/CoreModules/Communications/REST/RESTInterregionComms.cs
+++ b/OpenSim/Region/CoreModules/Communications/REST/RESTInterregionComms.cs
@@ -1051,7 +1051,7 @@ namespace OpenSim.Region.CoreModules.Communications.REST
1051 1051
1052 #region Misc 1052 #region Misc
1053 1053
1054 protected OSDMap GetOSDMap(Hashtable request) 1054 public static OSDMap GetOSDMap(Hashtable request)
1055 { 1055 {
1056 OSDMap args = null; 1056 OSDMap args = null;
1057 try 1057 try
@@ -1084,7 +1084,7 @@ namespace OpenSim.Region.CoreModules.Communications.REST
1084 /// <param name="uri">Something like this: /agent/uuid/ or /agent/uuid/handle/release</param> 1084 /// <param name="uri">Something like this: /agent/uuid/ or /agent/uuid/handle/release</param>
1085 /// <param name="uri">uuid on uuid field</param> 1085 /// <param name="uri">uuid on uuid field</param>
1086 /// <param name="action">optional action</param> 1086 /// <param name="action">optional action</param>
1087 protected bool GetParams(string uri, out UUID uuid, out ulong regionHandle, out string action) 1087 public static bool GetParams(string uri, out UUID uuid, out ulong regionHandle, out string action)
1088 { 1088 {
1089 uuid = UUID.Zero; 1089 uuid = UUID.Zero;
1090 action = ""; 1090 action = "";