diff --git a/src/base/application.cpp b/src/base/application.cpp index 4e7500cac..f90bff53b 100644 --- a/src/base/application.cpp +++ b/src/base/application.cpp @@ -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 ) diff --git a/src/base/application.h b/src/base/application.h index ae0d3ad67..1c46ec9be 100644 --- a/src/base/application.h +++ b/src/base/application.h @@ -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 inputDirs; - //! Current list of error messages - //vector errorMessage; - //! Current list of warning messages - //vector warning; - //! Current error Routine - //vector 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 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