Success! Looks like we've fixed this one. According to our records the fix was applied for EXTJSIV-8545 in 4.2.0 Sprint 3.
  1. #1
    Sencha User
    Join Date
    Dec 2012
    Posts
    7
    Vote Rating
    0
    lelit is on a distinguished road

      0  

    Default Nitpicking: pointless double assignment in form/Basic.js

    Nitpicking: pointless double assignment in form/Basic.js


    Casually browsing form/Basic.js source in ExtJS 4.2.0 beta2 I saw the following code in the getValues() method:

    Code:
    if (isArray(val)) {
       values[name] = values[name] = bucket.concat(val);
    } else {
       bucket.push(val);
    }

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,637
    Vote Rating
    435
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    Thanks for the report! We will clean that bit up. I have opened a bug in our bug tracker.