diff options
Diffstat (limited to 'rust/rust.go')
| -rw-r--r-- | rust/rust.go | 8 | 
1 files changed, 0 insertions, 8 deletions
diff --git a/rust/rust.go b/rust/rust.go index a11a04c89..0a9869fdc 100644 --- a/rust/rust.go +++ b/rust/rust.go @@ -172,13 +172,6 @@ func (mod *Module) SanitizePropDefined() bool {  	return mod.sanitize != nil && mod.compiler != nil  } -func (mod *Module) IsDependencyRoot() bool { -	if mod.compiler != nil { -		return mod.compiler.isDependencyRoot() -	} -	panic("IsDependencyRoot called on a non-compiler Rust module") -} -  func (mod *Module) IsPrebuilt() bool {  	if _, ok := mod.compiler.(*prebuiltLibraryDecorator); ok {  		return true @@ -449,7 +442,6 @@ type compiler interface {  	SetDisabled()  	stdLinkage(ctx *depsContext) RustLinkage -	isDependencyRoot() bool  	strippedOutputFilePath() android.OptionalPath  }  |