summaryrefslogtreecommitdiff
path: root/android/module_proxy.go
diff options
context:
space:
mode:
author Chaitanya Cheemala (xWF) <ccheemala@google.com> 2024-11-19 09:29:03 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2024-11-19 09:29:03 +0000
commite3a84fe7d64d6a96f656674cec93f72874f8f40c (patch)
tree56d01e1f16d1bfe059127b2571c5827871d60551 /android/module_proxy.go
parentd3d89ede5d31c6175915dc4516bf6cd5cb3cd350 (diff)
Revert "Do not allow vintf_fragments for modules installed in the filesystem"
This reverts commit d3d89ede5d31c6175915dc4516bf6cd5cb3cd350. Reason for revert: Likely culprit for b/379811732 - verifying through ABTD before revert submission. This is part of the standard investigation process, and does not mean your CL will be reverted. Change-Id: I9d70e7ae4a7c9663d6bc25f0291df615dfc6d58b
Diffstat (limited to 'android/module_proxy.go')
-rw-r--r--android/module_proxy.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/android/module_proxy.go b/android/module_proxy.go
index 30459b9cd..1f9679926 100644
--- a/android/module_proxy.go
+++ b/android/module_proxy.go
@@ -9,8 +9,6 @@ type ModuleProxy struct {
module blueprint.ModuleProxy
}
-var _ Module = (*ModuleProxy)(nil)
-
func (m ModuleProxy) Name() string {
return m.module.Name()
}
@@ -227,7 +225,3 @@ func (m ModuleProxy) DecodeMultilib(ctx ConfigContext) (string, string) {
func (m ModuleProxy) Overrides() []string {
panic("method is not implemented on ModuleProxy")
}
-
-func (m ModuleProxy) VintfFragments(ctx ConfigurableEvaluatorContext) []string {
- panic("method is not implemented on ModuleProxy")
-}