summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIdan Horowitz <idan.horowitz@gmail.com>2021-04-22 23:40:43 +0300
committerAndreas Kling <kling@serenityos.org>2021-04-22 22:42:38 +0200
commit1c512a702a8bf35fb4165266b15be5282d23cb82 (patch)
tree92182db8a848d35070f61a1f69c4edf11a9c2f55
parent18ddfc19c6328d9519d8909b295a8913a27ff75f (diff)
downloadserenity-1c512a702a8bf35fb4165266b15be5282d23cb82.zip
AK+Userland: Use idan.horowitz@serenityos.org for my copyright headers
-rw-r--r--AK/BinaryHeap.h2
-rw-r--r--AK/BitStream.h2
-rw-r--r--AK/IntrusiveRedBlackTree.h2
-rw-r--r--AK/RedBlackTree.h2
-rw-r--r--AK/Tests/TestBinaryHeap.cpp2
-rw-r--r--AK/Tests/TestIntrusiveRedBlackTree.cpp2
-rw-r--r--AK/Tests/TestRedBlackTree.cpp2
-rw-r--r--Userland/Applications/MouseSettings/MouseSettingsWindow.cpp2
-rw-r--r--Userland/Applications/MouseSettings/MouseSettingsWindow.h2
-rw-r--r--Userland/Applications/MouseSettings/main.cpp2
-rw-r--r--Userland/Libraries/LibArchive/Tar.h2
-rw-r--r--Userland/Libraries/LibArchive/TarStream.cpp2
-rw-r--r--Userland/Libraries/LibArchive/TarStream.h2
-rw-r--r--Userland/Libraries/LibArchive/Zip.cpp2
-rw-r--r--Userland/Libraries/LibArchive/Zip.h2
-rw-r--r--Userland/Libraries/LibCompress/Deflate.cpp2
-rw-r--r--Userland/Libraries/LibCompress/Deflate.h2
-rw-r--r--Userland/Libraries/LibCompress/DeflateTables.h2
-rw-r--r--Userland/Libraries/LibCompress/Gzip.cpp2
-rw-r--r--Userland/Libraries/LibCompress/Gzip.h2
-rw-r--r--Userland/Utilities/gzip.cpp2
-rw-r--r--Userland/Utilities/mktemp.cpp2
-rw-r--r--Userland/Utilities/traceroute.cpp2
-rw-r--r--Userland/Utilities/zip.cpp2
24 files changed, 24 insertions, 24 deletions
diff --git a/AK/BinaryHeap.h b/AK/BinaryHeap.h
index ae35ba274c..08d1bbae2f 100644
--- a/AK/BinaryHeap.h
+++ b/AK/BinaryHeap.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
diff --git a/AK/BitStream.h b/AK/BitStream.h
index 20b70755f6..d09e47e9a8 100644
--- a/AK/BitStream.h
+++ b/AK/BitStream.h
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2020, the SerenityOS developers.
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
diff --git a/AK/IntrusiveRedBlackTree.h b/AK/IntrusiveRedBlackTree.h
index f7cb70a242..1a13e45aec 100644
--- a/AK/IntrusiveRedBlackTree.h
+++ b/AK/IntrusiveRedBlackTree.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
diff --git a/AK/RedBlackTree.h b/AK/RedBlackTree.h
index f702f0438b..dbfebbad27 100644
--- a/AK/RedBlackTree.h
+++ b/AK/RedBlackTree.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
diff --git a/AK/Tests/TestBinaryHeap.cpp b/AK/Tests/TestBinaryHeap.cpp
index 2b88149408..10865e84b0 100644
--- a/AK/Tests/TestBinaryHeap.cpp
+++ b/AK/Tests/TestBinaryHeap.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
diff --git a/AK/Tests/TestIntrusiveRedBlackTree.cpp b/AK/Tests/TestIntrusiveRedBlackTree.cpp
index fbe16b75ca..0271e4af11 100644
--- a/AK/Tests/TestIntrusiveRedBlackTree.cpp
+++ b/AK/Tests/TestIntrusiveRedBlackTree.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
diff --git a/AK/Tests/TestRedBlackTree.cpp b/AK/Tests/TestRedBlackTree.cpp
index 6c84006ffe..9940a968c6 100644
--- a/AK/Tests/TestRedBlackTree.cpp
+++ b/AK/Tests/TestRedBlackTree.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
diff --git a/Userland/Applications/MouseSettings/MouseSettingsWindow.cpp b/Userland/Applications/MouseSettings/MouseSettingsWindow.cpp
index e4a01f60db..a7d8d4300d 100644
--- a/Userland/Applications/MouseSettings/MouseSettingsWindow.cpp
+++ b/Userland/Applications/MouseSettings/MouseSettingsWindow.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2020, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2020, Idan Horowitz <idan.horowitz@serenityos.org>
* Copyright (c) 2021, the SerenityOS developers
*
* SPDX-License-Identifier: BSD-2-Clause
diff --git a/Userland/Applications/MouseSettings/MouseSettingsWindow.h b/Userland/Applications/MouseSettings/MouseSettingsWindow.h
index a0efc130b9..3e386eba7e 100644
--- a/Userland/Applications/MouseSettings/MouseSettingsWindow.h
+++ b/Userland/Applications/MouseSettings/MouseSettingsWindow.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2020, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2020, Idan Horowitz <idan.horowitz@serenityos.org>
* Copyright (c) 2021, the SerenityOS developers
*
* SPDX-License-Identifier: BSD-2-Clause
diff --git a/Userland/Applications/MouseSettings/main.cpp b/Userland/Applications/MouseSettings/main.cpp
index 2c357367e7..f77af49970 100644
--- a/Userland/Applications/MouseSettings/main.cpp
+++ b/Userland/Applications/MouseSettings/main.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2020, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2020, Idan Horowitz <idan.horowitz@serenityos.org>
* Copyright (c) 2021, the SerenityOS developers
*
* SPDX-License-Identifier: BSD-2-Clause
diff --git a/Userland/Libraries/LibArchive/Tar.h b/Userland/Libraries/LibArchive/Tar.h
index bf56b0fa5d..4d2867193b 100644
--- a/Userland/Libraries/LibArchive/Tar.h
+++ b/Userland/Libraries/LibArchive/Tar.h
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2020, Peter Elliott <pelliott@ualberta.ca>
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
diff --git a/Userland/Libraries/LibArchive/TarStream.cpp b/Userland/Libraries/LibArchive/TarStream.cpp
index 2da855296c..bb892fea7e 100644
--- a/Userland/Libraries/LibArchive/TarStream.cpp
+++ b/Userland/Libraries/LibArchive/TarStream.cpp
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2020, Peter Elliott <pelliott@ualberta.ca>
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
diff --git a/Userland/Libraries/LibArchive/TarStream.h b/Userland/Libraries/LibArchive/TarStream.h
index 180a60f1f8..4c515f5981 100644
--- a/Userland/Libraries/LibArchive/TarStream.h
+++ b/Userland/Libraries/LibArchive/TarStream.h
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2020, Peter Elliott <pelliott@ualberta.ca>
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
diff --git a/Userland/Libraries/LibArchive/Zip.cpp b/Userland/Libraries/LibArchive/Zip.cpp
index 0de2969dc4..7ce1acb5f8 100644
--- a/Userland/Libraries/LibArchive/Zip.cpp
+++ b/Userland/Libraries/LibArchive/Zip.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
diff --git a/Userland/Libraries/LibArchive/Zip.h b/Userland/Libraries/LibArchive/Zip.h
index 8201e4c654..42e66b81ab 100644
--- a/Userland/Libraries/LibArchive/Zip.h
+++ b/Userland/Libraries/LibArchive/Zip.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
diff --git a/Userland/Libraries/LibCompress/Deflate.cpp b/Userland/Libraries/LibCompress/Deflate.cpp
index 8bca0e8f83..6daf450d43 100644
--- a/Userland/Libraries/LibCompress/Deflate.cpp
+++ b/Userland/Libraries/LibCompress/Deflate.cpp
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2020, the SerenityOS developers
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
diff --git a/Userland/Libraries/LibCompress/Deflate.h b/Userland/Libraries/LibCompress/Deflate.h
index b7609776df..9f95afa2af 100644
--- a/Userland/Libraries/LibCompress/Deflate.h
+++ b/Userland/Libraries/LibCompress/Deflate.h
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2020, the SerenityOS developers
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
diff --git a/Userland/Libraries/LibCompress/DeflateTables.h b/Userland/Libraries/LibCompress/DeflateTables.h
index d6255ad6af..54e9523ff0 100644
--- a/Userland/Libraries/LibCompress/DeflateTables.h
+++ b/Userland/Libraries/LibCompress/DeflateTables.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
diff --git a/Userland/Libraries/LibCompress/Gzip.cpp b/Userland/Libraries/LibCompress/Gzip.cpp
index 96cb2c55b2..70ad0bcff3 100644
--- a/Userland/Libraries/LibCompress/Gzip.cpp
+++ b/Userland/Libraries/LibCompress/Gzip.cpp
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2020, the SerenityOS developers.
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
diff --git a/Userland/Libraries/LibCompress/Gzip.h b/Userland/Libraries/LibCompress/Gzip.h
index 16df469232..8d0f9973ae 100644
--- a/Userland/Libraries/LibCompress/Gzip.h
+++ b/Userland/Libraries/LibCompress/Gzip.h
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2020, the SerenityOS developers.
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
diff --git a/Userland/Utilities/gzip.cpp b/Userland/Utilities/gzip.cpp
index bcba76cb92..f310001856 100644
--- a/Userland/Utilities/gzip.cpp
+++ b/Userland/Utilities/gzip.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
diff --git a/Userland/Utilities/mktemp.cpp b/Userland/Utilities/mktemp.cpp
index e51717c33b..376ba6a841 100644
--- a/Userland/Utilities/mktemp.cpp
+++ b/Userland/Utilities/mktemp.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
diff --git a/Userland/Utilities/traceroute.cpp b/Userland/Utilities/traceroute.cpp
index b8c831a0bc..6c4a40a7be 100644
--- a/Userland/Utilities/traceroute.cpp
+++ b/Userland/Utilities/traceroute.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
diff --git a/Userland/Utilities/zip.cpp b/Userland/Utilities/zip.cpp
index 4cdb2e32a6..a7587713c6 100644
--- a/Userland/Utilities/zip.cpp
+++ b/Userland/Utilities/zip.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@gmail.com>
+ * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/