Skip to content
Snippets Groups Projects
Commit bf51ea50 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

TRT_ConditionsServices: Fix unchecked StatusCodes

parent 344c53ce
No related merge requests found
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/ */
#ifndef SIMULATIONBASE #ifndef SIMULATIONBASE
...@@ -152,7 +152,7 @@ TRT_ByteStream_ConditionsSvc::handle(const Incident&) ...@@ -152,7 +152,7 @@ TRT_ByteStream_ConditionsSvc::handle(const Incident&)
this->resetCounts(); this->resetCounts();
if ( m_readCondFromESD ) if ( m_readCondFromESD )
this->readData(); this->readData().ignore();
return; return;
} }
......
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/ */
/** @file TRT_StrawAlignDbSvc.cxx /** @file TRT_StrawAlignDbSvc.cxx
...@@ -168,7 +168,7 @@ StatusCode TRT_StrawAlignDbSvc::readTextFile(const std::string& filename) ...@@ -168,7 +168,7 @@ StatusCode TRT_StrawAlignDbSvc::readTextFile(const std::string& filename)
// force a call back in the geometry // force a call back in the geometry
int i(0); int i(0);
std::list<std::string> keys ; std::list<std::string> keys ;
(const_cast<InDetDD::TRT_DetectorManager*>(m_trtman))->align(i,keys) ; (const_cast<InDetDD::TRT_DetectorManager*>(m_trtman))->align(i,keys).ignore() ;
return StatusCode::SUCCESS ; return StatusCode::SUCCESS ;
} }
......
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