Revert "Attempt to fix the VAAssetStorage pool creation issue" because of LL's upcoming ewwwww-hackme-fix
This reverts commit e7f5063944.
master
parent
941dc882e2
commit
8ac53f8a76
|
|
@ -272,17 +272,6 @@ void LLCoprocedureManager::close(const std::string &pool)
|
|||
}
|
||||
}
|
||||
|
||||
// <FS:Ansariel> Explicitly create the VAAssetStorage pool
|
||||
void LLCoprocedureManager::createPool(const std::string& poolName)
|
||||
{
|
||||
poolMap_t::iterator it = mPoolMap.find(poolName);
|
||||
if (it == mPoolMap.end())
|
||||
{
|
||||
initializePool(poolName);
|
||||
}
|
||||
}
|
||||
// </FS:Ansariel> Explicitly create the VAAssetStorage pool
|
||||
|
||||
//=========================================================================
|
||||
LLCoprocedurePool::LLCoprocedurePool(const std::string &poolName, size_t size):
|
||||
mPoolName(poolName),
|
||||
|
|
|
|||
|
|
@ -79,8 +79,6 @@ public:
|
|||
|
||||
void close();
|
||||
void close(const std::string &pool);
|
||||
|
||||
void createPool(const std::string& poolName); // <FS:Ansariel> Explicitly create the VAAssetStorage pool
|
||||
|
||||
private:
|
||||
|
||||
|
|
|
|||
|
|
@ -116,8 +116,6 @@ LLViewerAssetStorage::LLViewerAssetStorage(LLMessageSystem *msg, LLXferManager *
|
|||
mCountSucceeded(0),
|
||||
mTotalBytesFetched(0)
|
||||
{
|
||||
// <FS:Ansariel> Explicitly create the VAAssetStorage pool
|
||||
LLCoprocedureManager::instance().createPool(VIEWER_ASSET_STORAGE_CORO_POOL);
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -131,8 +129,6 @@ LLViewerAssetStorage::LLViewerAssetStorage(LLMessageSystem *msg, LLXferManager *
|
|||
mCountSucceeded(0),
|
||||
mTotalBytesFetched(0)
|
||||
{
|
||||
// <FS:Ansariel> Explicitly create the VAAssetStorage pool
|
||||
LLCoprocedureManager::instance().createPool(VIEWER_ASSET_STORAGE_CORO_POOL);
|
||||
}
|
||||
|
||||
LLViewerAssetStorage::~LLViewerAssetStorage()
|
||||
|
|
|
|||
Loading…
Reference in New Issue