diff options
author | Jeff Ames | 2008-09-28 03:21:11 +0000 |
---|---|---|
committer | Jeff Ames | 2008-09-28 03:21:11 +0000 |
commit | 0b4415849ace5ad7bf91a6d0c0374fc101f7136e (patch) | |
tree | 92e89ae1a89b2c3dd821e8c312c14e6ace24330f /OpenSim/Region/Environment/Scenes | |
parent | eol-style native; on EventQueueHelper (diff) | |
download | opensim-SC_OLD-0b4415849ace5ad7bf91a6d0c0374fc101f7136e.zip opensim-SC_OLD-0b4415849ace5ad7bf91a6d0c0374fc101f7136e.tar.gz opensim-SC_OLD-0b4415849ace5ad7bf91a6d0c0374fc101f7136e.tar.bz2 opensim-SC_OLD-0b4415849ace5ad7bf91a6d0c0374fc101f7136e.tar.xz |
Update svn properties. Minor formatting cleanup. Fix a compiler warning. Fix a UUID vs null comparison.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index e5f10b8..ceec7bc 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs | |||
@@ -3068,7 +3068,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
3068 | { | 3068 | { |
3069 | List<T> ret = new List<T>(); | 3069 | List<T> ret = new List<T>(); |
3070 | 3070 | ||
3071 | foreach(Object o in ModuleInterfaces[typeof(T)]) | 3071 | foreach (Object o in ModuleInterfaces[typeof(T)]) |
3072 | ret.Add((T)o); | 3072 | ret.Add((T)o); |
3073 | return ret.ToArray(); | 3073 | return ret.ToArray(); |
3074 | } | 3074 | } |