summaryrefslogtreecommitdiff
path: root/installed-tests/js/modules/mutualImport
diff options
context:
space:
mode:
authorPhilip Chimento <philip.chimento@gmail.com>2020-09-13 19:10:44 -0700
committerPhilip Chimento <philip.chimento@gmail.com>2020-11-30 09:50:11 -0800
commit78bb511cc159ff2a0e32aafdcb305f4ab6b1a3ee (patch)
treeedcd92d5d45fabd6e9fe42c04b8261c723dd2202 /installed-tests/js/modules/mutualImport
parent8880c98a5c8b963235019c18de36e3ad1cf9b2d8 (diff)
downloadgjs-78bb511cc159ff2a0e32aafdcb305f4ab6b1a3ee.tar.gz
maint: Add copyright notices based on major file contributors
Based on looking at the git logs, add copyright notices to files which were missing them, assuming the copyright belongs to people who made major contributions to each file. Some assumptions were made as to who to assign the copyright to, such as, what copyright assignment did the contributor make in other files added in the same commit? What email address did they use to make the commit? What copyright assignment did they make in other commits using the same email address?
Diffstat (limited to 'installed-tests/js/modules/mutualImport')
-rw-r--r--installed-tests/js/modules/mutualImport/a.js1
-rw-r--r--installed-tests/js/modules/mutualImport/b.js1
2 files changed, 2 insertions, 0 deletions
diff --git a/installed-tests/js/modules/mutualImport/a.js b/installed-tests/js/modules/mutualImport/a.js
index 3a60c0e3..f98f3325 100644
--- a/installed-tests/js/modules/mutualImport/a.js
+++ b/installed-tests/js/modules/mutualImport/a.js
@@ -1,5 +1,6 @@
/* exported getCount, getCountViaB, incrementCount */
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
+// SPDX-FileCopyrightText: 2008 Red Hat, Inc.
const B = imports.mutualImport.b;
diff --git a/installed-tests/js/modules/mutualImport/b.js b/installed-tests/js/modules/mutualImport/b.js
index 082ec031..aabc1da8 100644
--- a/installed-tests/js/modules/mutualImport/b.js
+++ b/installed-tests/js/modules/mutualImport/b.js
@@ -1,5 +1,6 @@
/* exported getCount */
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
+// SPDX-FileCopyrightText: 2008 Red Hat, Inc.
const A = imports.mutualImport.a;