diff options
| author | Rider Linden <rider@lindenlab.com> | 2015-05-22 16:27:25 -0700 | 
|---|---|---|
| committer | Rider Linden <rider@lindenlab.com> | 2015-05-22 16:27:25 -0700 | 
| commit | d784b20e2926ffcdf3d79de157b0ec0e1676bc82 (patch) | |
| tree | 97a03be9b937b07fad7bcbc63883c5de567e5bd7 | |
| parent | 00b2b60a0c495656e1b8e0a20272c449eea49b3c (diff) | |
Clean out the dead code
| -rwxr-xr-x | indra/newview/llfloaterregiondebugconsole.cpp | 71 | 
1 files changed, 0 insertions, 71 deletions
| diff --git a/indra/newview/llfloaterregiondebugconsole.cpp b/indra/newview/llfloaterregiondebugconsole.cpp index 00955ff941..271fb2f9a3 100755 --- a/indra/newview/llfloaterregiondebugconsole.cpp +++ b/indra/newview/llfloaterregiondebugconsole.cpp @@ -30,7 +30,6 @@  #include "llfloaterregiondebugconsole.h"  #include "llagent.h" -#include "llhttpclient.h"  #include "llhttpnode.h"  #include "lllineeditor.h"  #include "lltexteditor.h" @@ -69,60 +68,6 @@ namespace  	const std::string CONSOLE_NOT_SUPPORTED(  		"This region does not support the simulator console."); -#if 0 -	// This responder handles the initial response. Unless error() is called -	// we assume that the simulator has received our request. Error will be -	// called if this request times out. -	class AsyncConsoleResponder : public LLHTTPClient::Responder -	{ -		LOG_CLASS(AsyncConsoleResponder); -	protected: -		/* virtual */ -		void httpFailure() -		{ -			LL_WARNS("Console") << dumpResponse() << LL_ENDL; -			sConsoleReplySignal(UNABLE_TO_SEND_COMMAND); -		} -	}; - -	class ConsoleResponder : public LLHTTPClient::Responder -	{ -		LOG_CLASS(ConsoleResponder); -	public: -		ConsoleResponder(LLTextEditor *output) : mOutput(output) -		{ -		} - -	protected: -		/*virtual*/ -		void httpFailure() -		{ -			LL_WARNS("Console") << dumpResponse() << LL_ENDL; -			if (mOutput) -			{ -				mOutput->appendText( -					UNABLE_TO_SEND_COMMAND + PROMPT, -					false); -			} -		} - -		/*virtual*/ -		void httpSuccess() -		{ -			const LLSD& content = getContent(); -			LL_DEBUGS("Console") << content << LL_ENDL; -			if (mOutput) -			{ -				mOutput->appendText( -					content.asString() + PROMPT, false); -			} -		} - -	public: -		LLTextEditor * mOutput; -	}; -#endif -  	// This handles responses for console commands sent via the asynchronous  	// API.  	class ConsoleResponseNode : public LLHTTPNode @@ -205,35 +150,19 @@ void LLFloaterRegionDebugConsole::onInput(LLUICtrl* ctrl, const LLSD& param)  		}  		else  		{ -#if 1              LLSD postData = LLSD(input->getText());              LLCoreHttpUtil::HttpCoroutineAdapter::callbackHttpPost(url, postData,                  boost::bind(&LLFloaterRegionDebugConsole::onConsoleSuccess, this, _1),                  boost::bind(&LLFloaterRegionDebugConsole::onConsoleError, this, _1)); -#else -			// Using SimConsole (deprecated) -			LLHTTPClient::post( -				url, -				LLSD(input->getText()), -				new ConsoleResponder(mOutput)); -#endif  		}  	}  	else  	{ -#if 1          LLSD postData = LLSD(input->getText());          LLCoreHttpUtil::HttpCoroutineAdapter::callbackHttpPost(url, postData,              NULL,              boost::bind(&LLFloaterRegionDebugConsole::onAsyncConsoleError, this, _1)); -#else -		// Using SimConsoleAsync -		LLHTTPClient::post( -			url, -			LLSD(input->getText()), -			new AsyncConsoleResponder); -#endif  	}  	mOutput->appendText(text, false); | 
