diff options
| author | 2023-11-10 12:09:42 -0800 | |
|---|---|---|
| committer | 2024-01-17 16:20:33 -0800 | |
| commit | f6fa34b51da980adb97ee970dee3982790235ef9 (patch) | |
| tree | 494b7459bf9fc2a7f5526bb3208cf1c3854a32c6 | |
| parent | c6b4b1592d03b11588f5379874a802a76868c6fa (diff) | |
[cleanup] Remove unneeded virtual from a function
Bug: 282215580
Test: build + boot + perf record
Change-Id: Ibea21804b53526b42741dea1c60d46399ca14512
| -rw-r--r-- | libs/androidfw/include/androidfw/Idmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/androidfw/include/androidfw/Idmap.h b/libs/androidfw/include/androidfw/Idmap.h index 60689128dffb..d9f7c2a1ac19 100644 --- a/libs/androidfw/include/androidfw/Idmap.h +++ b/libs/androidfw/include/androidfw/Idmap.h @@ -71,7 +71,7 @@ class OverlayDynamicRefTable : public DynamicRefTable { // Rewrites a compile-time overlay resource id to the runtime resource id of corresponding target // resource. - virtual status_t lookupResourceIdNoRewrite(uint32_t* resId) const; + status_t lookupResourceIdNoRewrite(uint32_t* resId) const; const Idmap_data_header* data_header_; const Idmap_overlay_entry* entries_; |