Skip to content
Snippets Groups Projects
Commit f704720b authored by Matthew Andrew's avatar Matthew Andrew
Browse files

Re #21709 Removed unused async methods

parent 082a992b
No related merge requests found
......@@ -53,12 +53,8 @@ protected:
virtual int sendReport(const std::string &message, const std::string &url);
private:
/// Asynchronous method for sending post request
int sendErrorAsyncImpl(const std::string &message);
const std::string m_application;
/// Async method for sending error report
Poco::ActiveMethod<int, std::string, ErrorReporter> m_errorActiveMethod;
/// Stores the exit code of mantid if it has crashed
const std::string m_exitCode;
/// The time mantid has been running
......
......@@ -29,7 +29,6 @@ ErrorReporter::ErrorReporter(std::string application,
Types::Core::time_duration upTime,
std::string exitCode, bool share)
: m_application(application),
m_errorActiveMethod(this, &ErrorReporter::sendErrorAsyncImpl),
m_exitCode(exitCode), m_upTime(upTime), m_share(share), m_name(""),
m_email("") {
int retval = Mantid::Kernel::ConfigService::Instance().getValue(
......@@ -46,7 +45,6 @@ ErrorReporter::ErrorReporter(std::string application,
std::string exitCode, bool share, std::string name,
std::string email)
: m_application(application),
m_errorActiveMethod(this, &ErrorReporter::sendErrorAsyncImpl),
m_exitCode(exitCode), m_upTime(upTime), m_share(share), m_name(name),
m_email(email) {
int retval = Mantid::Kernel::ConfigService::Instance().getValue(
......@@ -119,10 +117,6 @@ std::string ErrorReporter::generateErrorMessage() {
return writer.write(message);
}
int ErrorReporter::sendErrorAsyncImpl(const std::string &message) {
return this->sendReport(message, m_url);
}
/** Submits a post request to the specified url with the message as the body
@param message : String containg json formatted error message
@param url : The url to send the post request to
......
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