From 6b1ffa423d1188fd87d01e848aa0f79e9af7bf18 Mon Sep 17 00:00:00 2001 From: Usta Date: Wed, 15 Dec 2021 12:45:49 -0500 Subject: [PATCH] name parameters for clarity Change-Id: If1879de10586b89aa572d04d5ad4e6157f2f4f30 --- android/module.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/module.go b/android/module.go index 4da201ca4..8c8e1c7a1 100644 --- a/android/module.go +++ b/android/module.go @@ -267,7 +267,7 @@ type BaseModuleContext interface { // // The Modules passed to the visit function should not be retained outside of the visit function, they may be // invalidated by future mutators. - WalkDeps(visit func(Module, Module) bool) + WalkDeps(visit func(child, parent Module) bool) // WalkDepsBlueprint calls visit for each transitive dependency, traversing the dependency // tree in top down order. visit may be called multiple times for the same (child, parent)