Remove unused call to process().
This commit is contained in:
@@ -135,13 +135,6 @@ bool Request::post(std::string const& url, headers_t const& headers, LLSD const&
|
|||||||
return true; // We throw in case of problems.
|
return true; // We throw in case of problems.
|
||||||
}
|
}
|
||||||
|
|
||||||
S32 Request::process(void)
|
|
||||||
{
|
|
||||||
//FIXME: needs implementation
|
|
||||||
//DoutEntering(dc::warning, "Request::process()");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace AICurlInterface
|
} // namespace AICurlInterface
|
||||||
//==================================================================================
|
//==================================================================================
|
||||||
|
|
||||||
|
|||||||
@@ -50,8 +50,6 @@ class Request {
|
|||||||
bool getByteRange(std::string const& url, headers_t const& headers, S32 offset, S32 length, ResponderPtr responder);
|
bool getByteRange(std::string const& url, headers_t const& headers, S32 offset, S32 length, ResponderPtr responder);
|
||||||
bool post(std::string const& url, headers_t const& headers, std::string const& data, ResponderPtr responder, S32 time_out = 0);
|
bool post(std::string const& url, headers_t const& headers, std::string const& data, ResponderPtr responder, S32 time_out = 0);
|
||||||
bool post(std::string const& url, headers_t const& headers, LLSD const& data, ResponderPtr responder, S32 time_out = 0);
|
bool post(std::string const& url, headers_t const& headers, LLSD const& data, ResponderPtr responder, S32 time_out = 0);
|
||||||
|
|
||||||
S32 process(void);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace AICurlInterface
|
} // namespace AICurlInterface
|
||||||
|
|||||||
@@ -2370,14 +2370,6 @@ void LLTextureFetch::commonUpdate()
|
|||||||
// Run a cross-thread command, if any.
|
// Run a cross-thread command, if any.
|
||||||
cmdDoWork();
|
cmdDoWork();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Update Curl on same thread as mCurlGetRequest was constructed
|
|
||||||
llassert_always(mCurlGetRequest);
|
|
||||||
S32 processed = mCurlGetRequest->process();
|
|
||||||
if (processed > 0)
|
|
||||||
{
|
|
||||||
lldebugs << "processed: " << processed << " messages." << llendl;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user