Anon
Anon

Reputation: 1

Im not using Map function here but its throwing an error that i'm using map in groovy

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

Answers (1)

Jeff Scott Brown
Jeff Scott Brown

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

Related Questions