commit | 235f4328f42295173fb10a237cff999afc055987 | [log] [tgz] |
---|---|---|
author | Robert Greenwalt | Thu Apr 02 23:36:26 2009 -0700 |
committer | The Android Open Source Project <initial-contribution@android.com> | Thu Apr 02 23:36:26 2009 -0700 |
tree | 6c0be7bb86509d86497848925879328e671d17be | |
parent | 77db3fc025ed8171e57a746a0e340788a7da937b [diff] |
AI 144413: am: CL 144342 Fix bag (string-array,etc) behavior with overlays. We used to replace elements in the default with elements from the overlay. This change causes us to empty the array first so if the overlay array is smaller we don't end up with elements from the default array showing through at the end of the array. Ex: [A,B,C] and overlay [D] should give [D] but used to give [D,B,C]. Original author: rgreenwalt Automated import of CL 144413