Export LintDepSetsIntf from java package
This interface will be used in the apex package to propagate strict_updatability_linting to transitive deps of mainline code Test: In build/soong, go test ./java Bug: 182349282 Change-Id: I30151217e843e4e9fe82db572a066918414ed3a0
This commit is contained in:
@@ -2363,17 +2363,17 @@ func (module *SdkLibraryImport) LintDepSets() LintDepSets {
|
||||
}
|
||||
}
|
||||
|
||||
func (module *SdkLibraryImport) getStrictUpdatabilityLinting() bool {
|
||||
func (module *SdkLibraryImport) GetStrictUpdatabilityLinting() bool {
|
||||
if module.implLibraryModule == nil {
|
||||
return false
|
||||
} else {
|
||||
return module.implLibraryModule.getStrictUpdatabilityLinting()
|
||||
return module.implLibraryModule.GetStrictUpdatabilityLinting()
|
||||
}
|
||||
}
|
||||
|
||||
func (module *SdkLibraryImport) setStrictUpdatabilityLinting(strictLinting bool) {
|
||||
func (module *SdkLibraryImport) SetStrictUpdatabilityLinting(strictLinting bool) {
|
||||
if module.implLibraryModule != nil {
|
||||
module.implLibraryModule.setStrictUpdatabilityLinting(strictLinting)
|
||||
module.implLibraryModule.SetStrictUpdatabilityLinting(strictLinting)
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user