am a6c767b2: Merge "Fix issue #10491028: iabv2 test apps that contain subscription SKUs..." into klp-dev

* commit 'a6c767b2d8239a80c53577ce59daea3001ab0bce':
  Fix issue #10491028: iabv2 test apps that contain subscription SKUs...
This commit is contained in:
Dianne Hackborn
2013-09-05 15:23:58 -07:00
committed by Android Git Automerger

View File

@@ -328,12 +328,12 @@ abstract class MapCollections<K, V> {
@Override
public Object[] toArray() {
return toArrayHelper(1);
return toArrayHelper(0);
}
@Override
public <T> T[] toArray(T[] array) {
return toArrayHelper(array, 1);
return toArrayHelper(array, 0);
}
@Override