Skip to content

Commit

Permalink
remove double negation
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Rudnicki committed Dec 17, 2024
1 parent 440726d commit ff7a805
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,11 @@ object SpelExpressionParseError {
}

case object MapWithExpressionKeysError extends UnsupportedOperationError {
override def message: String =
"Currently inline maps with not literal stringy keys (e.g. expressions as keys, numerals) are not supported"

override def message: String = {
"Currently only string keys for inline maps are supported"
}

}

case object ArrayConstructorError extends UnsupportedOperationError {
Expand Down

0 comments on commit ff7a805

Please sign in to comment.