diff options
author | Justin Clark-Casey (justincc) | 2014-04-03 00:35:42 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2014-04-03 00:35:42 +0100 |
commit | 91b7679db926affe6d1903ccc663400a3efda33d (patch) | |
tree | 3016d09d8b6b427908ca263dcba921c414ec0b3b | |
parent | Wrap contents of ETM.CrossAgentToNewRegionAsync() in try/catch to avoid a fai... (diff) | |
download | opensim-SC-91b7679db926affe6d1903ccc663400a3efda33d.zip opensim-SC-91b7679db926affe6d1903ccc663400a3efda33d.tar.gz opensim-SC-91b7679db926affe6d1903ccc663400a3efda33d.tar.bz2 opensim-SC-91b7679db926affe6d1903ccc663400a3efda33d.tar.xz |
minor: Fix warning in AvatarFactoryModule
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs b/OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs index 856c4e1..9f99143 100644 --- a/OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs | |||
@@ -486,7 +486,7 @@ namespace OpenSim.Region.CoreModules.Avatar.AvatarFactory | |||
486 | public int RequestRebake(IScenePresence sp, bool missingTexturesOnly) | 486 | public int RequestRebake(IScenePresence sp, bool missingTexturesOnly) |
487 | { | 487 | { |
488 | int texturesRebaked = 0; | 488 | int texturesRebaked = 0; |
489 | IImprovedAssetCache cache = m_scene.RequestModuleInterface<IImprovedAssetCache>(); | 489 | // IImprovedAssetCache cache = m_scene.RequestModuleInterface<IImprovedAssetCache>(); |
490 | 490 | ||
491 | for (int i = 0; i < AvatarAppearance.BAKE_INDICES.Length; i++) | 491 | for (int i = 0; i < AvatarAppearance.BAKE_INDICES.Length; i++) |
492 | { | 492 | { |