aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2018-08-29 15:36:33 -0700
committerColin Cross <ccross@android.com>2018-08-29 15:37:15 -0700
commit86bc9d46225fc1674cb73b93c4d19a705422ce18 (patch)
tree34f2abaa8e27ac7986c67da8f6124e131c3e5bab /cmd
parent33d92aa2b04589930aaf067285020152b77e4647 (diff)
downloadbuild_soong-86bc9d46225fc1674cb73b93c4d19a705422ce18.tar.gz
build_soong-86bc9d46225fc1674cb73b93c4d19a705422ce18.tar.bz2
build_soong-86bc9d46225fc1674cb73b93c4d19a705422ce18.zip
gofmt -w .
Test: m checkbuild Change-Id: Ia4aec5ddadf1f1b00f7c567522ca89fd839504f0
Diffstat (limited to 'cmd')
-rw-r--r--cmd/pom2bp/pom2bp.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/pom2bp/pom2bp.go b/cmd/pom2bp/pom2bp.go
index a39642fd..7b071c05 100644
--- a/cmd/pom2bp/pom2bp.go
+++ b/cmd/pom2bp/pom2bp.go
@@ -107,7 +107,7 @@ var excludes = make(Exclude)
type HostModuleNames map[string]bool
func (n HostModuleNames) IsHostModule(groupId string, artifactId string) bool {
- _, found := n[groupId + ":" + artifactId]
+ _, found := n[groupId+":"+artifactId]
return found
}