Reputation: 1
Caught: groovy.lang.MissingMethodException: No signature of method: java.util.LinkedHashMap.reset() is applicable for argument types: () values: [] Possible solutions: keySet(), keySet(), keySet(), get(java.lang.Object), get(java.lang.Object), get(java.lang.Object) groovy.lang.MissingMethodException: No signature of method: java.util.LinkedHashMap.reset() is applicable for argument types: () values: [] Possible solutions: keySet(), keySet(), keySet(), get(java.lang.Object), get(java.lang.Object), get(java.lang.Object) at main.run(main.groovy:394)
Upvotes: 0
Views: 417
Reputation: 27255
There is code at line 394 of main.groovy
that is calling reset()
(directly or indirectly) on an instance of LinkedHashMap
. That isn't valid.
Upvotes: 0