am 5179608e: Merge "Use ArrayList constructor directly"

* commit '5179608e19dfeffe4fd657d9a7c671fb932bd487':
  Use ArrayList constructor directly
main
Tadashi G. Takaoka 2014-04-22 21:57:35 +00:00 committed by Android Git Automerger
commit 0735d17e0c
1 changed files with 1 additions and 2 deletions

View File

@ -213,8 +213,7 @@ public class DynamicGridKeyboard extends Keyboard {
if (mCachedGridKeys != null) {
return mCachedGridKeys;
}
final ArrayList<Key> cachedKeys = CollectionUtils.newArrayList(mGridKeys.size());
cachedKeys.addAll(mGridKeys);
final ArrayList<Key> cachedKeys = new ArrayList<Key>(mGridKeys);
mCachedGridKeys = Collections.unmodifiableList(cachedKeys);
return mCachedGridKeys;
}