summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorRider Linden <none@none>2015-04-07 11:23:20 -0700
committerRider Linden <none@none>2015-04-07 11:23:20 -0700
commitfe34b3ef725b83af0deeffcf8bf6ef9769224e8d (patch)
tree2b141f1f7dec86cc32ee599897773624cbe5ef5b /indra/newview
parent8a76284e488227b9ff83917cdec2ea011c088527 (diff)
Remove unused mHttpPriority
Diffstat (limited to 'indra/newview')
-rwxr-xr-xindra/newview/llaccountingcostmanager.cpp3
-rwxr-xr-xindra/newview/llaccountingcostmanager.h1
2 files changed, 1 insertions, 3 deletions
diff --git a/indra/newview/llaccountingcostmanager.cpp b/indra/newview/llaccountingcostmanager.cpp
index f33f67e76d..6337fbe444 100755
--- a/indra/newview/llaccountingcostmanager.cpp
+++ b/indra/newview/llaccountingcostmanager.cpp
@@ -37,8 +37,7 @@ LLAccountingCostManager::LLAccountingCostManager():
mHttpRequest(),
mHttpHeaders(),
mHttpOptions(),
- mHttpPolicy(LLCore::HttpRequest::DEFAULT_POLICY_ID),
- mHttpPriority(0)
+ mHttpPolicy(LLCore::HttpRequest::DEFAULT_POLICY_ID)
{
mHttpRequest = LLCore::HttpRequest::ptr_t(new LLCore::HttpRequest());
mHttpHeaders = LLCore::HttpHeaders::ptr_t(new LLCore::HttpHeaders(), false);
diff --git a/indra/newview/llaccountingcostmanager.h b/indra/newview/llaccountingcostmanager.h
index 7d544b15e8..f4d45d43cb 100755
--- a/indra/newview/llaccountingcostmanager.h
+++ b/indra/newview/llaccountingcostmanager.h
@@ -83,7 +83,6 @@ private:
LLCore::HttpHeaders::ptr_t mHttpHeaders;
LLCore::HttpOptions::ptr_t mHttpOptions;
LLCore::HttpRequest::policy_t mHttpPolicy;
- LLCore::HttpRequest::priority_t mHttpPriority;
};
//===============================================================================