Remove dead code from class Application
This commit is contained in:
parent
1d7104a96b
commit
6f7241b08b
2 changed files with 2 additions and 22 deletions
|
|
@ -169,7 +169,6 @@ void Application::ThreadMessages::removeThreadMessages()
|
|||
#endif // THREAD_SAFE_CANTERA
|
||||
|
||||
Application::Application() :
|
||||
stop_on_error(false),
|
||||
m_suppress_deprecation_warnings(false)
|
||||
{
|
||||
#if !defined( THREAD_SAFE_CANTERA )
|
||||
|
|
|
|||
|
|
@ -215,8 +215,7 @@ public:
|
|||
|
||||
//! Destructor for class deletes global data
|
||||
/*!
|
||||
* Delete any open XML trees, the logwriter, and
|
||||
* the XML log, if any.
|
||||
* Deletes any open XML trees.
|
||||
*/
|
||||
virtual ~Application();
|
||||
|
||||
|
|
@ -396,22 +395,7 @@ protected:
|
|||
|
||||
//! Current vector of input directories to search for input files
|
||||
std::vector<std::string> inputDirs;
|
||||
//! Current list of error messages
|
||||
//vector<string> errorMessage;
|
||||
//! Current list of warning messages
|
||||
//vector<string> warning;
|
||||
//! Current error Routine
|
||||
//vector<string> errorRoutine;
|
||||
//! Last error message
|
||||
//string msglog;
|
||||
//! Current line length
|
||||
// size_t linelen;
|
||||
//! Current value of stop_on_error
|
||||
bool stop_on_error;
|
||||
//! Current map of options
|
||||
std::map<std::string, std::string> options;
|
||||
//! Current value of tmp_dir
|
||||
std::string tmp_dir;
|
||||
|
||||
//! Current vector of XML file trees that have been previously parsed
|
||||
//! The second element of the value is used to store the last-modified time
|
||||
//! for the file, to enable change detection.
|
||||
|
|
@ -421,9 +405,6 @@ protected:
|
|||
|
||||
bool m_suppress_deprecation_warnings;
|
||||
|
||||
//! Current pointer to the logwriter
|
||||
//Logger* logwriter;
|
||||
|
||||
#if defined(THREAD_SAFE_CANTERA)
|
||||
ThreadMessages pMessenger ;
|
||||
#else
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue