From 87f5333fa6cd87002f15edb0f1788a0dca8b28db Mon Sep 17 00:00:00 2001 From: Aaron Son Date: Mon, 2 Nov 2020 10:03:14 -0800 Subject: [PATCH] go/libraries/utils/async: Fix copyright headers in errgroup{,_test}.go --- go/libraries/utils/async/errgroup.go | 14 ++++++++++++++ go/libraries/utils/async/errgroup_test.go | 14 ++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/go/libraries/utils/async/errgroup.go b/go/libraries/utils/async/errgroup.go index 6931ba42d4..324d689a73 100644 --- a/go/libraries/utils/async/errgroup.go +++ b/go/libraries/utils/async/errgroup.go @@ -1,3 +1,17 @@ +// Copyright 2020 Liquidata, Inc. +// +// 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. + package async import ( diff --git a/go/libraries/utils/async/errgroup_test.go b/go/libraries/utils/async/errgroup_test.go index 524e4b1d1f..0968376208 100644 --- a/go/libraries/utils/async/errgroup_test.go +++ b/go/libraries/utils/async/errgroup_test.go @@ -1,3 +1,17 @@ +// Copyright 2020 Liquidata, Inc. +// +// 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. + package async import (