Remove warning. Empty expressions might exist in real applications without being an error.

This commit is contained in:
Hermann Kraus 2012-03-03 17:41:43 +01:00
parent 586cdff6e8
commit 36918e4a8b

View file

@ -70,10 +70,6 @@ void text_node::apply(char_properties const& p, Feature const& feature, processe
} }
if (text_str.length() > 0) { if (text_str.length() > 0) {
output.push_back(p, text_str); output.push_back(p, text_str);
} else {
#ifdef MAPNIK_DEBUG
std::cerr << "Warning: Empty expression.\n";
#endif
} }
} }