Uploaded image for project: 'Groovy'
  1. Groovy
  2. GROOVY-9069

assignment in map by named index causes casting error

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Not A Bug
    • 2.5.6
    • None
    • groovy-runtime
    • None
    • Linux Mint 19.1

    Description

      If I assign a value to a collection via a named index (key name) I get a casting error like so:

      Failed to convert property value of type java.util.LinkedHashMap to required type java.util.Map for property methodConfigNames

      Here is the code in question. This doesn't happen in Groovy 2.4.15. Because Grails 4 is running 2.5.6, many plugins are failing with this error.

      void setMethodConfigNames(Map<String, Map<String, List<String>>> methodConfigNames) {
          methodConfigNames.each { String key, Map<String, List<String>> value ->
              Map<String, List<ConfigAttribute>> configs = [:]
              populateMap configs, value
              methodConfigs[key] = configs // fails
              //methodConfigs.put(key,configs) // works
          }
      }
      

      If this could get resolved it would save a lot of plugins from having to be re-released with the workaround making less confusion about the error. In some cases this works and some it doesn't. Even though I have @CompileStatic set, the issue happens at runtime.

      Attachments

        Issue Links

          Activity

            People

              Unassigned Unassigned
              rvanderwerf@gmail.com Ryan Vanderwerf
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: