aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Servers
diff options
context:
space:
mode:
authorJeff Ames2009-05-17 10:26:00 +0000
committerJeff Ames2009-05-17 10:26:00 +0000
commit5cfd84c92427658d88c4b36e1470744babd3d54d (patch)
tree5a08dd22f5866dd4e0cf0bdbed9353561390fa70 /OpenSim/Servers
parentRemoving a superfluous message, just to make bamboo run again. (diff)
downloadopensim-SC_OLD-5cfd84c92427658d88c4b36e1470744babd3d54d.zip
opensim-SC_OLD-5cfd84c92427658d88c4b36e1470744babd3d54d.tar.gz
opensim-SC_OLD-5cfd84c92427658d88c4b36e1470744babd3d54d.tar.bz2
opensim-SC_OLD-5cfd84c92427658d88c4b36e1470744babd3d54d.tar.xz
Update svn properties.
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