* minor: Eliminate unused paramter in LocalUserServices constructors

This commit is contained in:
Justin Clarke Casey
2008-11-28 15:40:44 +00:00
parent 0862627b34
commit 7b49c711e9
5 changed files with 9 additions and 13 deletions

View File

@@ -42,7 +42,7 @@ namespace OpenSim.Region.Environment.Scenes.Tests
m_interServiceInventoryService = lis;
AddInventoryService(lis);
LocalUserServices lus = new LocalUserServices(null, 991, 992, lis);
LocalUserServices lus = new LocalUserServices(991, 992, lis);
m_userService = lus;
m_userServiceAdmin = lus;
}