diff options
author | Dr Scofield | 2009-04-22 09:42:44 +0000 |
---|---|---|
committer | Dr Scofield | 2009-04-22 09:42:44 +0000 |
commit | 458f7eb9b38609d02980afe5a6ee88d19c7dd7f8 (patch) | |
tree | b8d2b6c140ca373ca5604f7087541f74185ac77c /OpenSim/Region/ScriptEngine/Shared/Api | |
parent | * update example to reflect optional Well known hostname. (diff) | |
download | opensim-SC_OLD-458f7eb9b38609d02980afe5a6ee88d19c7dd7f8.zip opensim-SC_OLD-458f7eb9b38609d02980afe5a6ee88d19c7dd7f8.tar.gz opensim-SC_OLD-458f7eb9b38609d02980afe5a6ee88d19c7dd7f8.tar.bz2 opensim-SC_OLD-458f7eb9b38609d02980afe5a6ee88d19c7dd7f8.tar.xz |
cleaning up, fixing warnings
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index deb4dae..faacc76 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -9194,9 +9194,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
9194 | return UUID.Zero.ToString(); | 9194 | return UUID.Zero.ToString(); |
9195 | } | 9195 | } |
9196 | 9196 | ||
9197 | UUID tid = tid = AsyncCommands. | 9197 | // was: UUID tid = tid = AsyncCommands. |
9198 | DataserverPlugin.RegisterRequest(m_localID, | 9198 | UUID tid = AsyncCommands.DataserverPlugin.RegisterRequest(m_localID, m_itemID, assetID.ToString()); |
9199 | m_itemID, assetID.ToString()); | ||
9200 | 9199 | ||
9201 | if (NotecardCache.IsCached(assetID)) | 9200 | if (NotecardCache.IsCached(assetID)) |
9202 | { | 9201 | { |
@@ -9257,9 +9256,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
9257 | return UUID.Zero.ToString(); | 9256 | return UUID.Zero.ToString(); |
9258 | } | 9257 | } |
9259 | 9258 | ||
9260 | UUID tid = tid = AsyncCommands. | 9259 | // was: UUID tid = tid = AsyncCommands. |
9261 | DataserverPlugin.RegisterRequest(m_localID, | 9260 | UUID tid = AsyncCommands.DataserverPlugin.RegisterRequest(m_localID, m_itemID, assetID.ToString()); |
9262 | m_itemID, assetID.ToString()); | ||
9263 | 9261 | ||
9264 | if (NotecardCache.IsCached(assetID)) | 9262 | if (NotecardCache.IsCached(assetID)) |
9265 | { | 9263 | { |