diff --git a/console/program/src/data_types/array_type/parse.rs b/console/program/src/data_types/array_type/parse.rs index e7f59af7f6..4f6fdc75c0 100644 --- a/console/program/src/data_types/array_type/parse.rs +++ b/console/program/src/data_types/array_type/parse.rs @@ -42,8 +42,6 @@ impl Parser for ArrayType { Ok((string, length)) } - // Parse the whitespace and comments from the string. - let (string, _) = Sanitizer::parse(string)?; // Parse the opening brackets and validate the number of dimensions. let (string, dimensions) = map_res(many0_count(pair(tag("["), Sanitizer::parse_whitespaces)), |dimensions| { if dimensions.is_zero() {