Remove unused code: verbosity

This commit is contained in:
bofdahof
2025-04-17 13:38:08 +10:00
committed by Benjamin Nauck
parent 5b80376447
commit 09d08593ed
3 changed files with 0 additions and 27 deletions

View File

@@ -168,26 +168,6 @@ ConsoleSingleton::~ConsoleSingleton()
//**************************************************************************
// methods
/**
* sets the console in a special mode
*/
void ConsoleSingleton::SetConsoleMode(ConsoleMode mode)
{
if (mode & Verbose) {
_bVerbose = true;
}
}
/**
* unsets the console from a special mode
*/
void ConsoleSingleton::UnsetConsoleMode(ConsoleMode mode)
{
if (mode & Verbose) {
_bVerbose = false;
}
}
/**
* \a type can be OR'ed with any of the FreeCAD_ConsoleMsgType flags to enable -- if \a b is true --
* or to disable -- if \a b is false -- a console observer with name \a sObs.