diff options
author | 2025-03-05 11:05:12 -0800 | |
---|---|---|
committer | 2025-03-05 11:38:00 -0800 | |
commit | 595c7fdb4b32d9fc532ba1b0c1409475738d6adf (patch) | |
tree | 8fd913a9b0cc94d876f02fd5c73f84dc62893494 | |
parent | 4f374518f9797267c7067be128ab2a87dd984370 (diff) |
Remove debugging accidentally added to visibility error message
If125ea981be87673bae3bd0a7e3b2c16c337e8f7 accidentally added the
dependency tag to the visibility error message.
Test: builds
Change-Id: I8c9ce89aad2bb4a475c4d8bf9d4a6daa9ea6e3a2
-rw-r--r-- | android/visibility.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/visibility.go b/android/visibility.go index 416a3f15f..915368710 100644 --- a/android/visibility.go +++ b/android/visibility.go @@ -551,7 +551,7 @@ func visibilityRuleEnforcer(ctx BottomUpMutatorContext) { rule := effectiveVisibilityRules(ctx.Config(), depQualified) if !rule.matches(qualified) { - ctx.ModuleErrorf("depends on %s which is not visible to this module\nYou may need to add %q to its visibility, %#v", depQualified, "//"+ctx.ModuleDir(), ctx.OtherModuleDependencyTag(dep)) + ctx.ModuleErrorf("depends on %s which is not visible to this module\nYou may need to add %q to its visibility", depQualified, "//"+ctx.ModuleDir()) } }) } |