From 442bbb517f760c7da634ee5b3a2e53888250d0d6 Mon Sep 17 00:00:00 2001 From: saiashok0981 Date: Thu, 16 Jul 2026 23:36:45 +0530 Subject: [PATCH] fix: add missing copyright notice to pkg/utils/dataset.go license header The Apache 2.0 license header in pkg/utils/dataset.go was incomplete: it was missing the mandatory 'Copyright YEAR The Fluid Authors.' line that appears in every other Go source file in this package. Incomplete header (before): /* Licensed under the Apache License, Version 2.0 (the License); Correct header (after): /* Copyright 2023 The Fluid Authors. Licensed under the Apache License, Version 2.0 (the License); This omission: 1. Violates Apache 2.0 attribution requirements (Sec. 4b requires preserving the copyright notice in derivative works) 2. Is inconsistent with every other file in pkg/utils/ and across the entire project codebase 3. Will be flagged by automated license compliance tools such as addlicense (https://github.com/google/addlicense) and licensei, both commonly used in CNCF projects No functional code was changed; this is a metadata-only correction. Signed-off-by: saiashok103@gmail.com --- pkg/utils/dataset.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/utils/dataset.go b/pkg/utils/dataset.go index c4872798c6e..e2a50c79521 100644 --- a/pkg/utils/dataset.go +++ b/pkg/utils/dataset.go @@ -1,4 +1,5 @@ /* +Copyright 2023 The Fluid Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.