aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Servers
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Servers')
-rw-r--r--OpenSim/Servers/Connectors/Asset/AssetServiceConnector.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Servers/Connectors/Asset/AssetServiceConnector.cs b/OpenSim/Servers/Connectors/Asset/AssetServiceConnector.cs
index b2b4cc2..df9507a 100644
--- a/OpenSim/Servers/Connectors/Asset/AssetServiceConnector.cs
+++ b/OpenSim/Servers/Connectors/Asset/AssetServiceConnector.cs
@@ -45,14 +45,14 @@ namespace OpenSim.Servers.Connectors
45 MethodBase.GetCurrentMethod().DeclaringType); 45 MethodBase.GetCurrentMethod().DeclaringType);
46 46
47 private string m_ServerURI = String.Empty; 47 private string m_ServerURI = String.Empty;
48 private IImprovedAssetCache m_Cache = null; 48 private IImprovedAssetCache m_Cache = null;
49 49
50 public AssetServicesConnector() 50 public AssetServicesConnector()
51 { 51 {
52 } 52 }
53 53
54 public AssetServicesConnector(string serverURI) 54 public AssetServicesConnector(string serverURI)
55 { 55 {
56 m_ServerURI = serverURI; 56 m_ServerURI = serverURI;
57 } 57 }
58 58
@@ -201,7 +201,7 @@ namespace OpenSim.Servers.Connectors
201 if (newID != String.Empty) 201 if (newID != String.Empty)
202 { 202 {
203 // Placing this here, so that this work with old asset servers that don't send any reply back 203 // Placing this here, so that this work with old asset servers that don't send any reply back
204 // SynchronousRestObjectRequester returns somethins that is not an empty string 204 // SynchronousRestObjectRequester returns somethins that is not an empty string
205 if (newID != null) 205 if (newID != null)
206 asset.ID = newID; 206 asset.ID = newID;
207 207