Skip to content
Snippets Groups Projects
Commit 3d77aefd authored by Dave Casper's avatar Dave Casper
Browse files

Merge branch 'silence-FaserDetectorIDHelper' into 'master'

silence warning and test merge request

See merge request faser/calypso!1
parents 1fbca465 5bdfe61c
No related branches found
No related tags found
No related merge requests found
......@@ -328,7 +328,7 @@ FaserDetectorIDBase::initialize_from_dictionary(const IdDictMgr& dict_mgr)
m_helper->setMsgSvc(m_msgSvc);
}
if(m_helper->initialize_from_dictionary(dict_mgr, m_quiet)) return (1);
if(m_helper->initialize_from_dictionary(dict_mgr)) return (1);
// Initialize level indices and id values from dicts
if(initLevelsFromDict(dict_mgr)) return (1);
......
......@@ -42,8 +42,7 @@ FaserDetectorIDHelper::~FaserDetectorIDHelper(void)
}
int
FaserDetectorIDHelper::initialize_from_dictionary(const IdDictMgr& dict_mgr,
bool quiet)
FaserDetectorIDHelper::initialize_from_dictionary(const IdDictMgr& dict_mgr)
{
if(m_initialized) return(0);
......
......@@ -41,7 +41,7 @@ public:
/// Initialization from the identifier dictionary
int initialize_from_dictionary(const IdDictMgr& dict_mgr, bool quiet);
int initialize_from_dictionary(const IdDictMgr& dict_mgr);
~FaserDetectorIDHelper(void);
......
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