Merge "Use android.InList for inList"
am: e35ad13004
Change-Id: I6a712813ed3294b3e5a0365f09675e430211f4d9
This commit is contained in:
commit
20b350b433
2 changed files with 3 additions and 23 deletions
|
@ -199,20 +199,6 @@ func addPrefix(list []string, prefix string) []string {
|
|||
return list
|
||||
}
|
||||
|
||||
func indexList(s string, list []string) int {
|
||||
for i, l := range list {
|
||||
if l == s {
|
||||
return i
|
||||
}
|
||||
}
|
||||
|
||||
return -1
|
||||
}
|
||||
|
||||
func inList(s string, list []string) bool {
|
||||
return indexList(s, list) != -1
|
||||
}
|
||||
|
||||
func SanitizerRuntimeLibrary(t Toolchain, sanitizer string) string {
|
||||
arch := t.SanitizerRuntimeLibraryArch()
|
||||
if arch == "" {
|
||||
|
@ -243,3 +229,5 @@ func ToolPath(t Toolchain) string {
|
|||
}
|
||||
return filepath.Join(t.GccRoot(), t.GccTriple(), "bin")
|
||||
}
|
||||
|
||||
var inList = android.InList
|
||||
|
|
10
java/java.go
10
java/java.go
|
@ -1252,15 +1252,6 @@ func ImportFactoryHost() android.Module {
|
|||
return module
|
||||
}
|
||||
|
||||
func inList(s string, l []string) bool {
|
||||
for _, e := range l {
|
||||
if e == s {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
//
|
||||
// Defaults
|
||||
//
|
||||
|
@ -1295,3 +1286,4 @@ func DefaultsFactory(props ...interface{}) android.Module {
|
|||
|
||||
var Bool = proptools.Bool
|
||||
var String = proptools.String
|
||||
var inList = android.InList
|
||||
|
|
Loading…
Reference in a new issue