Skip to content

Commit

Permalink
Groovy 3.0.19 compatibility (#485)
Browse files Browse the repository at this point in the history
* Upgrade to Groovy 3.0.19

* Make project compatible with Groovy 3.0.19

* Revert to Groovy 3.0.11
  • Loading branch information
matrei authored Dec 8, 2023
1 parent c8facbc commit bb22bfe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class TestRequestConfigurer implements Request {
String contentType = 'application/json'
String characterEncoding = 'UTF-8'
Map<String, List<String>> headers = new LinkedHashMap<String, List<String>>().withDefault { String name ->
return []
return [] as List<String>
}
Map<String, Object> attributes = new LinkedHashMap<String, Object>()

Expand Down

0 comments on commit bb22bfe

Please sign in to comment.