diff options
author | Jeff Ames | 2009-05-20 01:32:06 +0000 |
---|---|---|
committer | Jeff Ames | 2009-05-20 01:32:06 +0000 |
commit | e0bc5c5db2b88691c04b06be2fa73a75746126cb (patch) | |
tree | fa33ed724c57578d7ed76044f68940a4e09a8026 /OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs | |
parent | Update svn properties. (diff) | |
download | opensim-SC-e0bc5c5db2b88691c04b06be2fa73a75746126cb.zip opensim-SC-e0bc5c5db2b88691c04b06be2fa73a75746126cb.tar.gz opensim-SC-e0bc5c5db2b88691c04b06be2fa73a75746126cb.tar.bz2 opensim-SC-e0bc5c5db2b88691c04b06be2fa73a75746126cb.tar.xz |
Add copyright headers, formatting cleanup.
Diffstat (limited to 'OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs')
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs | 8 |
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 | { |