diff options
Diffstat (limited to 'cmds/idmap2/libidmap2/ResourceMapping.cpp')
-rw-r--r-- | cmds/idmap2/libidmap2/ResourceMapping.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/cmds/idmap2/libidmap2/ResourceMapping.cpp b/cmds/idmap2/libidmap2/ResourceMapping.cpp index 9abb9e458902..46eeb8e6ac80 100644 --- a/cmds/idmap2/libidmap2/ResourceMapping.cpp +++ b/cmds/idmap2/libidmap2/ResourceMapping.cpp @@ -285,14 +285,12 @@ Result<ResourceMapping> ResourceMapping::FromApkAssets(const ApkAssets& target_a bool enforce_overlayable, LogInfo& log_info) { AssetManager2 target_asset_manager; - if (!target_asset_manager.SetApkAssets({&target_apk_assets}, true /* invalidate_caches */, - false /* filter_incompatible_configs*/)) { + if (!target_asset_manager.SetApkAssets({&target_apk_assets})) { return Error("failed to create target asset manager"); } AssetManager2 overlay_asset_manager; - if (!overlay_asset_manager.SetApkAssets({&overlay_apk_assets}, true /* invalidate_caches */, - false /* filter_incompatible_configs */)) { + if (!overlay_asset_manager.SetApkAssets({&overlay_apk_assets})) { return Error("failed to create overlay asset manager"); } |