Rename jsonVariationMap to jsonVariations. am: c6d80893cb
am: 72848a40d8
Original change: https://android-review.googlesource.com/c/platform/build/blueprint/+/2075942 Change-Id: Ie8e5bec8f2e0e58bbdf4da3af6b71845d316af23 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
commit
49f47d14d9
1 changed files with 5 additions and 5 deletions
10
context.go
10
context.go
|
@ -2235,12 +2235,12 @@ func (c *Context) updateDependencies() (errs []error) {
|
|||
return
|
||||
}
|
||||
|
||||
type jsonVariationMap []Variation
|
||||
type jsonVariations []Variation
|
||||
|
||||
type jsonModuleName struct {
|
||||
Name string
|
||||
Variations jsonVariationMap
|
||||
DependencyVariations jsonVariationMap
|
||||
Variations jsonVariations
|
||||
DependencyVariations jsonVariations
|
||||
}
|
||||
|
||||
type jsonDep struct {
|
||||
|
@ -2256,8 +2256,8 @@ type JsonModule struct {
|
|||
Module map[string]interface{}
|
||||
}
|
||||
|
||||
func toJsonVariationMap(vm variationMap) jsonVariationMap {
|
||||
m := make(jsonVariationMap, 0, len(vm))
|
||||
func toJsonVariationMap(vm variationMap) jsonVariations {
|
||||
m := make(jsonVariations, 0, len(vm))
|
||||
for k, v := range vm {
|
||||
m = append(m, Variation{k, v})
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue