]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/vet: add missing copyright header
author180909 <734461790@qq.com>
Sun, 25 Jul 2021 11:21:14 +0000 (11:21 +0000)
committerIan Lance Taylor <iant@golang.org>
Mon, 26 Jul 2021 21:34:18 +0000 (21:34 +0000)
Change-Id: I78942dde77547f91daebe763328f52b4c476ddaf
GitHub-Last-Rev: 423f1683fc7db8c1764383cf0a61c54ee21c06f2
GitHub-Pull-Request: golang/go#47334
Reviewed-on: https://go-review.googlesource.com/c/go/+/336434
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Trust: Than McIntosh <thanm@google.com>

src/cmd/vet/main.go
src/cmd/vet/testdata/copylock/copylock.go
src/cmd/vet/testdata/httpresponse/httpresponse.go
src/cmd/vet/testdata/testingpkg/tests.go
src/cmd/vet/testdata/testingpkg/tests_test.go

index a33bba2466611809093f57dc00b272733d4c3172..7da8606eceb203bec50f60c076d7067a5fb87523 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright 2012 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
 package main
 
 import (
index 8079cf3248b785afbcf7b1097e509047e48c0a56..7cfafe64086ff2f8399a90079dd5325798a87f05 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright 2018 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
 package copylock
 
 import "sync"
index 6141f6e06dce69cfbeaaf976b8d872bf71e1f3df..98e394a2715978823db82e8215bc10375986fb0a 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright 2018 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
 package httpresponse
 
 import (
index 69d29d3c6c65ef548cc4e2226ca19f16e072def0..8f4674d33c0ddcb08c67a84248ba0da9cabd387b 100644 (file)
@@ -1 +1,5 @@
+// Copyright 2018 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
 package testdata
index 09bb98d980ecd38e820d357211f454c12ba9c3d3..815dcc8a95f72a8e8cf52f991e1111eb5b2bc78b 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright 2018 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
 package testdata
 
 func Example_BadSuffix() {} // ERROR "Example_BadSuffix has malformed example suffix: BadSuffix"