Commit 5b1a8a52 authored by Russ Cox's avatar Russ Cox

cmd/vet: move cmd/vet/whitelist to cmd/vet/internal/whitelist

This was a mistake made when bringing cmd/vet into the main repo.

Fixes #13416.

Change-Id: I03b512ab944577c56085aea06df8ff5e1acc16d7
Reviewed-on: https://go-review.googlesource.com/17455Reviewed-by: 's avatarMatthew Dempsky <mdempsky@google.com>
parent d2ca4518
......@@ -7,7 +7,7 @@
package main
import (
"cmd/vet/whitelist"
"cmd/vet/internal/whitelist"
"flag"
"go/ast"
"strings"
......
......@@ -3,7 +3,7 @@
// license that can be found in the LICENSE file.
// Package whitelist defines exceptions for the vet tool.
package whitelist // import "cmd/vet/whitelist"
package whitelist
// UnkeyedLiteral are types that are actually slices, but
// syntactically, we cannot tell whether the Typ in pkg.Typ{1, 2, 3}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment