Skip to content

Commit

Permalink
Re #8717 Cleanup commented code.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ricardo Leal committed Jan 21, 2014
1 parent 0392b6e commit e2f37c6
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions Code/Mantid/Framework/Geometry/src/Instrument/Component.cpp
Expand Up @@ -103,12 +103,7 @@ namespace Geometry
IComponent* Component::clone() const
{
if (m_isParametrized) {
// IComponent* newComp = m_base->clone();
// ParameterMap * newPMap = new ParameterMap() ;
// newPMap->copyFromParameterMap(m_base,newComp, m_map);
// std::cout << "**********************: " << newPMap->getString(newComp,"C") << std::endl;
// return new Component(newComp,newPMap);
throw Kernel::Exception::NotImplementedError("Component::clone (for Parametrized Component)");
throw Kernel::Exception::NotImplementedError("Component::clone (for Parameterized Component)");
} else
return new Component(*this);
}
Expand Down

0 comments on commit e2f37c6

Please sign in to comment.