delete debuggging messages

This commit is contained in:
Hieu Hoang 2016-03-15 13:30:52 +00:00
parent 2ce2755b13
commit 57147669f8
2 changed files with 1 additions and 4 deletions

View File

@ -35,7 +35,7 @@ FeatureFunctions::FeatureFunctions(System &system)
:m_system(system)
,m_ffStartInd(0)
{
m_registry.PrintFF();
//m_registry.PrintFF();
}
FeatureFunctions::~FeatureFunctions() {
@ -78,7 +78,6 @@ void FeatureFunctions::Create()
BOOST_FOREACH(const std::string &line, *ffParams) {
cerr << "line=" << line << endl;
FeatureFunction *ff = Create(line);
cerr << "ff=" << ff->GetName() << endl;
m_featureFunctions.push_back(ff);

View File

@ -84,9 +84,7 @@ FeatureFunction *FeatureRegistry::Construct(size_t startInd, const std::string &
abort();
}
FeatureFactory *fact = i->second.get();
cerr << "fact=" << fact << endl;
FeatureFunction *ff = fact->Create(startInd, line);
cerr << "ff=" << ff << endl;
return ff;
}