aboutsummaryrefslogtreecommitdiffstats
path: root/cc/installer.go
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2016-08-01 13:20:05 -0700
committerColin Cross <ccross@android.com>2016-08-01 13:47:15 -0700
commit42742b8bb043abd3b330defd1bfac4ed756e63ff (patch)
tree438b1b4102b92b99b63a0a6b516f14b247f20f59 /cc/installer.go
parentb98c8b05954dd78d3c4bb87b0bceeb03ef4b362c (diff)
downloadbuild_soong-42742b8bb043abd3b330defd1bfac4ed756e63ff.tar.gz
build_soong-42742b8bb043abd3b330defd1bfac4ed756e63ff.tar.bz2
build_soong-42742b8bb043abd3b330defd1bfac4ed756e63ff.zip
Rename compiler, linker and installer methods to be unique
compiler, linker, and installer interfaces may be implemented by a single decorator object, rename their methods to be unique to avoid the same method being called multiple times. Test: out/soong/build.ninja unchanged Change-Id: I1608c41cd68f614ba99c11bb9fcc7936f618d9aa
Diffstat (limited to 'cc/installer.go')
-rw-r--r--cc/installer.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/installer.go b/cc/installer.go
index 7dc2b78d..9a1e1fa0 100644
--- a/cc/installer.go
+++ b/cc/installer.go
@@ -42,7 +42,7 @@ type baseInstaller struct {
var _ installer = (*baseInstaller)(nil)
-func (installer *baseInstaller) props() []interface{} {
+func (installer *baseInstaller) installerProps() []interface{} {
return []interface{}{&installer.Properties}
}