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
@ -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…
x
Reference in New Issue
Block a user