aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs')
-rw-r--r--OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
index e808cb2..a3bcd5f 100644
--- a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
+++ b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
@@ -183,11 +183,11 @@ namespace OpenSim.Region.CoreModules.Scripting.LSLHttp
183 183
184 public void ScriptRemoved(UUID itemID) 184 public void ScriptRemoved(UUID itemID)
185 { 185 {
186 lock(m_UrlMap) 186 lock (m_UrlMap)
187 { 187 {
188 List<string> removeURLs = new List<string>(); 188 List<string> removeURLs = new List<string>();
189 189
190 foreach(KeyValuePair<string, UrlData> url in m_UrlMap) 190 foreach (KeyValuePair<string, UrlData> url in m_UrlMap)
191 { 191 {
192 if (url.Value.itemID == itemID) 192 if (url.Value.itemID == itemID)
193 { 193 {
@@ -205,11 +205,11 @@ namespace OpenSim.Region.CoreModules.Scripting.LSLHttp
205 205
206 public void ObjectRemoved(UUID objectID) 206 public void ObjectRemoved(UUID objectID)
207 { 207 {
208 lock(m_UrlMap) 208 lock (m_UrlMap)
209 { 209 {
210 List<string> removeURLs = new List<string>(); 210 List<string> removeURLs = new List<string>();
211 211
212 foreach(KeyValuePair<string, UrlData> url in m_UrlMap) 212 foreach (KeyValuePair<string, UrlData> url in m_UrlMap)
213 { 213 {
214 if (url.Value.hostID == objectID) 214 if (url.Value.hostID == objectID)
215 { 215 {