diff options
author | Michael Pratt <mpratt@google.com> | 2020-06-17 12:32:59 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-06-17 12:34:33 -0700 |
commit | 6d806ee7198422973a2e4efa9b539de7792b933f (patch) | |
tree | 460a7f620751543e0470977979068b70a1618910 /tools/nogo | |
parent | e5d97cbcc1e64185b8fab1cf563c8754edd2e52e (diff) |
Remove various uses of 'blacklist'
Updates #2972
PiperOrigin-RevId: 316942245
Diffstat (limited to 'tools/nogo')
-rw-r--r-- | tools/nogo/matchers.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/nogo/matchers.go b/tools/nogo/matchers.go index bc5772303..32f099925 100644 --- a/tools/nogo/matchers.go +++ b/tools/nogo/matchers.go @@ -89,7 +89,7 @@ func (r resultExcluded) ShouldReport(d analysis.Diagnostic, _ *token.FileSet) bo return false } } - return true // Not blacklisted. + return true // Not excluded. } // andMatcher is a composite matcher. |