Remove incorrect 'bundleable' reference from stringMapToBundle param

This was accidentally copy-pasted in 5008417c8c

PiperOrigin-RevId: 641823991
This commit is contained in:
ibaker 2024-06-10 01:50:07 -07:00 committed by Copybara-Service
parent 009f7360c5
commit 82970a6861

View File

@ -124,9 +124,9 @@ public final class BundleCollectionUtil {
return sparseArray; return sparseArray;
} }
public static Bundle stringMapToBundle(Map<String, String> bundleableMap) { public static Bundle stringMapToBundle(Map<String, String> map) {
Bundle bundle = new Bundle(); 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()); bundle.putString(entry.getKey(), entry.getValue());
} }
return bundle; return bundle;