summaryrefslogtreecommitdiff
path: root/src/pkg/image
diff options
context:
space:
mode:
authorChaiShushan <chaishushan@gmail.com>2013-12-17 06:52:32 -0800
committerChaiShushan <chaishushan@gmail.com>2013-12-17 06:52:32 -0800
commit9751b8081d221cccdfbd781eb83d86546e31306a (patch)
treec25a65ca6a3c4527538641bbfd474ef7e28b9c3b /src/pkg/image
parentbc778788188215feee04923443432f42bc0324b3 (diff)
downloadgo-9751b8081d221cccdfbd781eb83d86546e31306a.tar.gz
all: add missing copyright
R=golang-dev, iant CC=golang-dev https://codereview.appspot.com/43290043 Committer: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/pkg/image')
-rw-r--r--src/pkg/image/color/palette/gen.go4
-rw-r--r--src/pkg/image/color/palette/palette.go4
-rw-r--r--src/pkg/image/gif/reader_test.go4
3 files changed, 12 insertions, 0 deletions
diff --git a/src/pkg/image/color/palette/gen.go b/src/pkg/image/color/palette/gen.go
index f20c021de..4f4d88345 100644
--- a/src/pkg/image/color/palette/gen.go
+++ b/src/pkg/image/color/palette/gen.go
@@ -14,6 +14,10 @@ import (
)
func main() {
+ fmt.Println(`// Copyright 2013 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.`)
+ fmt.Println()
fmt.Println("// generated by go run gen.go; DO NOT EDIT")
fmt.Println()
fmt.Println("// Package palette provides standard color palettes.")
diff --git a/src/pkg/image/color/palette/palette.go b/src/pkg/image/color/palette/palette.go
index 3aba7401d..f761e5368 100644
--- a/src/pkg/image/color/palette/palette.go
+++ b/src/pkg/image/color/palette/palette.go
@@ -1,3 +1,7 @@
+// Copyright 2013 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.
+
// generated by go run gen.go; DO NOT EDIT
// Package palette provides standard color palettes.
diff --git a/src/pkg/image/gif/reader_test.go b/src/pkg/image/gif/reader_test.go
index 09867132d..fc2041e99 100644
--- a/src/pkg/image/gif/reader_test.go
+++ b/src/pkg/image/gif/reader_test.go
@@ -1,3 +1,7 @@
+// Copyright 2013 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 gif
import (