api-impl: misc stubs and fixes

This commit is contained in:
Mis012
2025-03-26 21:01:57 +01:00
parent fd2e9f43b6
commit f3332b7201
25 changed files with 234 additions and 37 deletions

View File

@@ -12,7 +12,12 @@ public class BaseBundle {
// Invariant - exactly one of mMap / mParcelledData will be null
// (except inside a call to unparcel)
/* package */ ArrayMap<String, Object> mMap = new ArrayMap<>();
/* package */ ArrayMap<String, Object> mMap;
public BaseBundle() {
mMap = new ArrayMap<String, Object>();
}
// Log a message if the value was non-null but not of the expected type
void typeWarning(String key, Object value, String className,