Deprecation

- Removed deprecated 'report.X.limit' feature.
This commit is contained in:
Paul Beckingham 2014-07-04 11:02:10 -04:00
parent ca9683d912
commit fa58c24c66
4 changed files with 3 additions and 11 deletions

View file

@ -88,12 +88,6 @@ std::string legacyCheckForDeprecatedVariables ()
std::map <std::string, std::string>::const_iterator it;
for (it = context.config.begin (); it != context.config.end (); ++it)
{
// report.*.limit
if (it->first.length () > 13 &&
it->first.substr (0, 7) == "report." &&
it->first.substr (it->first.length () - 6) == ".limit")
deprecated.push_back (it->first);
// report.*.annotations
if (it->first.length () > 19 &&
it->first.substr (0, 7) == "report." &&