diff --git a/src/Parse.jl b/src/Parse.jl index c4932f096..fda52a920 100644 --- a/src/Parse.jl +++ b/src/Parse.jl @@ -87,8 +87,6 @@ function _normalize_expr_string(s::AbstractString) # Replace standalone C or (C) with 1.0 or (1.0) s = replace(s, r"(? "1.0") s = replace(s, r"(? "(1.0)") - # TODO: Right now, making all variables lowercase. This might not always be desired. - s = lowercase(s) s = replace(s, r"\*\*" => "^") strip(s) end