diff --git a/src/actions/transformations/length.cc b/src/actions/transformations/length.cc index 1d0101dc..dc1d61ea 100644 --- a/src/actions/transformations/length.cc +++ b/src/actions/transformations/length.cc @@ -37,15 +37,8 @@ Length::Length(std::string action) std::string Length::evaluate(std::string value, Assay *assay) { - /** - * @todo Implement the transformation Length - */ - if (assay) { -#ifndef NO_LOGS - assay->debug(4, "Transformation Length is not implemented yet."); -#endif - } - return value; + + return std::to_string(value.size()); } } // namespace transformations