From 5c052b278a51f09b3de5321252f4020bb3f09649 Mon Sep 17 00:00:00 2001 From: Tim Pepper Date: Thu, 9 Feb 2017 09:09:44 -0800 Subject: [PATCH 1/2] update copyright date on template.go This file is meant to be a place from which you can copy when creating a new file and get a properly formatted starting point. The copyright date got old, but new files should get the current year. Signed-off-by: Tim Pepper --- template.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/template.go b/template.go index 6b91d29ed..d348386b8 100644 --- a/template.go +++ b/template.go @@ -1,5 +1,5 @@ // -// Copyright (c) 2016 Intel Corporation +// Copyright (c) 2017 Intel Corporation // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -16,7 +16,3 @@ // +build ignore package main - -import ( - "github.com/01org/ciao/ssntp" -) From 83fcd2558924734435fbb7541294ac0aa9e55540 Mon Sep 17 00:00:00 2001 From: Tim Pepper Date: Thu, 9 Feb 2017 09:14:08 -0800 Subject: [PATCH 2/2] remove template.go This file arguably is less relevant now and going forward. We create new files less often. And new files may be created by others who assert their own copyright on their new files. In which case they wouldn't copy this one. Signed-off-by: Tim Pepper --- template.go | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 template.go diff --git a/template.go b/template.go deleted file mode 100644 index d348386b8..000000000 --- a/template.go +++ /dev/null @@ -1,18 +0,0 @@ -// -// Copyright (c) 2017 Intel Corporation -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -// +build ignore - -package main