Update svn properties. Minor formatting cleanup. Fix a compiler warning. Fix a UUID vs null comparison.

This commit is contained in:
Jeff Ames
2008-09-28 03:21:11 +00:00
parent e78cdd9690
commit 0b4415849a
5 changed files with 6 additions and 6 deletions

View File

@@ -3068,7 +3068,7 @@ namespace OpenSim.Region.Environment.Scenes
{
List<T> ret = new List<T>();
foreach(Object o in ModuleInterfaces[typeof(T)])
foreach (Object o in ModuleInterfaces[typeof(T)])
ret.Add((T)o);
return ret.ToArray();
}