diff options
author | Jeff Ames | 2009-04-27 05:22:44 +0000 |
---|---|---|
committer | Jeff Ames | 2009-04-27 05:22:44 +0000 |
commit | 8dbcfc70bf87d503edd4239bd974339a130de153 (patch) | |
tree | 9adfe4db9d5658952cf181b919cbe45db170139b /OpenSim/Region/OptionalModules/Avatar/Chat | |
parent | Update svn properties. (diff) | |
download | opensim-SC_OLD-8dbcfc70bf87d503edd4239bd974339a130de153.zip opensim-SC_OLD-8dbcfc70bf87d503edd4239bd974339a130de153.tar.gz opensim-SC_OLD-8dbcfc70bf87d503edd4239bd974339a130de153.tar.bz2 opensim-SC_OLD-8dbcfc70bf87d503edd4239bd974339a130de153.tar.xz |
Add copyright headers. Formatting cleanup.
Diffstat (limited to 'OpenSim/Region/OptionalModules/Avatar/Chat')
-rw-r--r-- | OpenSim/Region/OptionalModules/Avatar/Chat/IRCConnector.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/OptionalModules/Avatar/Chat/IRCConnector.cs b/OpenSim/Region/OptionalModules/Avatar/Chat/IRCConnector.cs index eb6634d..ce8917b 100644 --- a/OpenSim/Region/OptionalModules/Avatar/Chat/IRCConnector.cs +++ b/OpenSim/Region/OptionalModules/Avatar/Chat/IRCConnector.cs | |||
@@ -259,7 +259,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Chat | |||
259 | Connect(); | 259 | Connect(); |
260 | } | 260 | } |
261 | 261 | ||
262 | lock(m_connectors) | 262 | lock (m_connectors) |
263 | m_connectors.Add(this); | 263 | m_connectors.Add(this); |
264 | 264 | ||
265 | m_enabled = true; | 265 | m_enabled = true; |
@@ -306,8 +306,8 @@ namespace OpenSim.Region.OptionalModules.Avatar.Chat | |||
306 | 306 | ||
307 | } | 307 | } |
308 | 308 | ||
309 | lock(m_connectors) | 309 | lock (m_connectors) |
310 | m_connectors.Remove(this); | 310 | m_connectors.Remove(this); |
311 | 311 | ||
312 | } | 312 | } |
313 | } | 313 | } |
@@ -845,7 +845,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Chat | |||
845 | _pdk_ = (_pdk_+1)%PING_PERIOD; // cycle the ping trigger | 845 | _pdk_ = (_pdk_+1)%PING_PERIOD; // cycle the ping trigger |
846 | _icc_++; // increment the inter-consecutive-connect-delay counter | 846 | _icc_++; // increment the inter-consecutive-connect-delay counter |
847 | 847 | ||
848 | lock(m_connectors) | 848 | lock (m_connectors) |
849 | foreach (IRCConnector connector in m_connectors) | 849 | foreach (IRCConnector connector in m_connectors) |
850 | { | 850 | { |
851 | 851 | ||