remove unused and obsolete 'quiet' option from csv datasource

This commit is contained in:
Dane Springmeyer 2013-01-03 14:49:22 -08:00
parent 000b714eae
commit a5fdcea9db
2 changed files with 0 additions and 2 deletions

View File

@ -71,7 +71,6 @@ csv_datasource::csv_datasource(parameters const& params)
headers_(),
manual_headers_(mapnik::util::trim_copy(*params.get<std::string>("headers", ""))),
strict_(*params.get<mapnik::boolean>("strict", false)),
quiet_(*params.get<mapnik::boolean>("quiet", false)),
filesize_max_(*params.get<float>("filesize_max", 20.0)), // MB
ctx_(boost::make_shared<mapnik::context_type>())
{

View File

@ -72,7 +72,6 @@ private:
std::vector<std::string> headers_;
std::string manual_headers_;
bool strict_;
bool quiet_;
double filesize_max_;
mapnik::context_ptr ctx_;
};