mirror of
https://github.com/samsonjs/media.git
synced 2026-06-28 05:29:33 +00:00
Remove incorrect 'bundleable' reference from stringMapToBundle param
This was accidentally copy-pasted in 5008417c8c
PiperOrigin-RevId: 641823991
This commit is contained in:
parent
009f7360c5
commit
82970a6861
1 changed files with 2 additions and 2 deletions
|
|
@ -124,9 +124,9 @@ public final class BundleCollectionUtil {
|
|||
return sparseArray;
|
||||
}
|
||||
|
||||
public static Bundle stringMapToBundle(Map<String, String> bundleableMap) {
|
||||
public static Bundle stringMapToBundle(Map<String, String> map) {
|
||||
Bundle bundle = new Bundle();
|
||||
for (Map.Entry<String, String> entry : bundleableMap.entrySet()) {
|
||||
for (Map.Entry<String, String> entry : map.entrySet()) {
|
||||
bundle.putString(entry.getKey(), entry.getValue());
|
||||
}
|
||||
return bundle;
|
||||
|
|
|
|||
Loading…
Reference in a new issue