Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Map sort was there originally to ensure coherent print of MethodCall args. It is unnecessary cause Groovy map literals create LinkedHashMap, which preserves insertion order. ClassCastException was produced due to the sort operation which used a TreeMap, resulting in a comparison of string w/ GString, which is problematic in Groovy.
- Loading branch information