Skip to content
Snippets Groups Projects
Commit 9dbea04a authored by Oz Linden's avatar Oz Linden
Browse files

remove dead member variables

parent 11ed48ab
No related branches found
No related tags found
No related merge requests found
...@@ -181,8 +181,6 @@ class BGFolderHttpHandler : public LLCore::HttpHandler ...@@ -181,8 +181,6 @@ class BGFolderHttpHandler : public LLCore::HttpHandler
}; };
const S32 MAX_FETCH_RETRIES = 10;
const char * const LOG_INV("Inventory"); const char * const LOG_INV("Inventory");
} // end of namespace anonymous } // end of namespace anonymous
...@@ -199,10 +197,7 @@ LLInventoryModelBackgroundFetch::LLInventoryModelBackgroundFetch(): ...@@ -199,10 +197,7 @@ LLInventoryModelBackgroundFetch::LLInventoryModelBackgroundFetch():
mAllFoldersFetched(FALSE), mAllFoldersFetched(FALSE),
mRecursiveInventoryFetchStarted(FALSE), mRecursiveInventoryFetchStarted(FALSE),
mRecursiveLibraryFetchStarted(FALSE), mRecursiveLibraryFetchStarted(FALSE),
mNumFetchRetries(0), mMinTimeBetweenFetches(0.3f)
mMinTimeBetweenFetches(0.3f),
mMaxTimeBetweenFetches(10.f),
mTimelyFetchPending(FALSE)
{} {}
LLInventoryModelBackgroundFetch::~LLInventoryModelBackgroundFetch() LLInventoryModelBackgroundFetch::~LLInventoryModelBackgroundFetch()
......
...@@ -87,12 +87,9 @@ class LLInventoryModelBackgroundFetch : public LLSingleton<LLInventoryModelBackg ...@@ -87,12 +87,9 @@ class LLInventoryModelBackgroundFetch : public LLSingleton<LLInventoryModelBackg
BOOL mBackgroundFetchActive; BOOL mBackgroundFetchActive;
bool mFolderFetchActive; bool mFolderFetchActive;
S32 mFetchCount; S32 mFetchCount;
BOOL mTimelyFetchPending;
S32 mNumFetchRetries;
LLFrameTimer mFetchTimer; LLFrameTimer mFetchTimer;
F32 mMinTimeBetweenFetches; F32 mMinTimeBetweenFetches;
F32 mMaxTimeBetweenFetches;
struct FetchQueueInfo struct FetchQueueInfo
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment