aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/Communications
diff options
context:
space:
mode:
authorlbsa712008-07-29 19:52:58 +0000
committerlbsa712008-07-29 19:52:58 +0000
commit8edab95bad417a4d82cdfb6e9ef3138e8c5f0ab1 (patch)
treef711c63ba64fea7489189c8d859977115022ac7f /OpenSim/Grid/Communications
parent* minor: temporarily command out variables to prevent compile warnings (diff)
downloadopensim-SC_OLD-8edab95bad417a4d82cdfb6e9ef3138e8c5f0ab1.zip
opensim-SC_OLD-8edab95bad417a4d82cdfb6e9ef3138e8c5f0ab1.tar.gz
opensim-SC_OLD-8edab95bad417a4d82cdfb6e9ef3138e8c5f0ab1.tar.bz2
opensim-SC_OLD-8edab95bad417a4d82cdfb6e9ef3138e8c5f0ab1.tar.xz
* Refactored some heavily duplicated RequestSimProfileData functions
* Changed InventoryUrl and GridServerURL type to Uri instead of string - to address '/' issues.
Diffstat (limited to 'OpenSim/Grid/Communications')
-rw-r--r--OpenSim/Grid/Communications/OGS1/OGS1InterServiceInventoryService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Grid/Communications/OGS1/OGS1InterServiceInventoryService.cs b/OpenSim/Grid/Communications/OGS1/OGS1InterServiceInventoryService.cs
index 6aa1440..eed4621 100644
--- a/OpenSim/Grid/Communications/OGS1/OGS1InterServiceInventoryService.cs
+++ b/OpenSim/Grid/Communications/OGS1/OGS1InterServiceInventoryService.cs
@@ -39,9 +39,9 @@ namespace OpenSim.Grid.Communications.OGS1
39 /// </summary> 39 /// </summary>
40 public class OGS1InterServiceInventoryService : IInterServiceInventoryServices 40 public class OGS1InterServiceInventoryService : IInterServiceInventoryServices
41 { 41 {
42 protected string m_inventoryServerUrl; 42 protected Uri m_inventoryServerUrl;
43 43
44 public OGS1InterServiceInventoryService(string inventoryServerUrl) 44 public OGS1InterServiceInventoryService(Uri inventoryServerUrl)
45 { 45 {
46 m_inventoryServerUrl = inventoryServerUrl; 46 m_inventoryServerUrl = inventoryServerUrl;
47 } 47 }