diff options
| author | 2024-11-26 05:43:45 +0000 | |
|---|---|---|
| committer | 2024-11-26 05:43:45 +0000 | |
| commit | 5cb0cf40bc416108ee635daf45473612415fcde5 (patch) | |
| tree | 0aaa178d367e6a46fc930a7392301e5565aca9cd /android/module_proxy.go | |
| parent | ff9aa2b1aa25e15d004c2496fa079f08b947bc04 (diff) | |
| parent | 6dbff039219e5186db651968ed924412005e5a0a (diff) | |
Merge "Revert "Reland: Do not allow vintf_fragments for modules installed in the filesystem"" into main
Diffstat (limited to 'android/module_proxy.go')
| -rw-r--r-- | android/module_proxy.go | 6 |
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") -} |