mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
* OMG! All but one references to UserProfileCacheService have been rerouted!
* HG is seriously broken here * Compiles. Untested.
This commit is contained in:
@@ -162,11 +162,10 @@ namespace OpenSim.Region.CoreModules.Framework.Library
|
||||
m_MockScene.RegisterModuleInterface<IInventoryService>(invService);
|
||||
m_MockScene.RegisterModuleInterface<IAssetService>(m_Scene.AssetService);
|
||||
|
||||
UserProfileData profile = new UserProfileData();
|
||||
profile.FirstName = "OpenSim";
|
||||
profile.ID = lib.Owner;
|
||||
profile.SurName = "Library";
|
||||
CachedUserInfo uinfo = new CachedUserInfo(invService, profile);
|
||||
UserAccount uinfo = new UserAccount(lib.Owner);
|
||||
uinfo.FirstName = "OpenSim";
|
||||
uinfo.LastName = "Library";
|
||||
uinfo.ServiceURLs = new Dictionary<string, object>();
|
||||
|
||||
foreach (string iarFileName in Directory.GetFiles(pathToLibraries, "*.iar"))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user