From c0b32f7b76c56bbb3a15bbb97c7f7c316d28dc7d Mon Sep 17 00:00:00 2001 From: Sergey Bugaev Date: Fri, 24 Jan 2020 16:45:29 +0300 Subject: [PATCH] Meta: Claim copyright for files created by me This changes copyright holder to myself for the source code files that I've created or have (almost) completely rewritten. Not included are the files that were significantly changed by others even though it was me who originally created them (think HtmlView), or the many other files I've contributed code to. --- AK/JsonArraySerializer.h | 2 +- AK/JsonObjectSerializer.h | 2 +- AK/Tests/TestUtf8.cpp | 2 +- AK/Utf8View.cpp | 2 +- AK/Utf8View.h | 2 +- Applications/Calculator/Calculator.cpp | 2 +- Applications/Calculator/Calculator.h | 2 +- Applications/Calculator/CalculatorWidget.cpp | 2 +- Applications/Calculator/CalculatorWidget.h | 2 +- Applications/Calculator/Keypad.cpp | 2 +- Applications/Calculator/Keypad.h | 2 +- Applications/Calculator/main.cpp | 2 +- Applications/Help/History.cpp | 2 +- Applications/Help/History.h | 2 +- Applications/Help/ManualModel.cpp | 2 +- Applications/Help/ManualModel.h | 2 +- Applications/Help/ManualNode.h | 2 +- Applications/Help/ManualPageNode.cpp | 2 +- Applications/Help/ManualPageNode.h | 2 +- Applications/Help/ManualSectionNode.cpp | 2 +- Applications/Help/ManualSectionNode.h | 2 +- Applications/Help/main.cpp | 2 +- Applications/SystemMonitor/DevicesModel.cpp | 2 +- Applications/SystemMonitor/DevicesModel.h | 2 +- Kernel/FileSystem/DevPtsFS.cpp | 2 +- Kernel/FileSystem/DevPtsFS.h | 2 +- Kernel/FileSystem/TmpFS.cpp | 2 +- Kernel/FileSystem/TmpFS.h | 2 +- Libraries/LibC/libgen.cpp | 2 +- Libraries/LibC/libgen.h | 2 +- Libraries/LibDraw/Emoji.cpp | 2 +- Libraries/LibDraw/Emoji.h | 2 +- Libraries/LibGUI/GColumnsView.cpp | 2 +- Libraries/LibGUI/GColumnsView.h | 2 +- Libraries/LibMarkdown/MDBlock.h | 2 +- Libraries/LibMarkdown/MDCodeBlock.cpp | 2 +- Libraries/LibMarkdown/MDCodeBlock.h | 2 +- Libraries/LibMarkdown/MDDocument.cpp | 2 +- Libraries/LibMarkdown/MDDocument.h | 2 +- Libraries/LibMarkdown/MDHeading.cpp | 2 +- Libraries/LibMarkdown/MDHeading.h | 2 +- Libraries/LibMarkdown/MDList.cpp | 2 +- Libraries/LibMarkdown/MDList.h | 2 +- Libraries/LibMarkdown/MDParagraph.cpp | 2 +- Libraries/LibMarkdown/MDParagraph.h | 2 +- Libraries/LibMarkdown/MDText.cpp | 2 +- Libraries/LibMarkdown/MDText.h | 2 +- Libraries/LibThread/BackgroundAction.cpp | 2 +- Libraries/LibThread/BackgroundAction.h | 2 +- Libraries/LibThread/Thread.cpp | 2 +- Libraries/LibThread/Thread.h | 2 +- Servers/SystemServer/Service.cpp | 2 +- Servers/SystemServer/Service.h | 2 +- Userland/chroot.cpp | 2 +- Userland/copy.cpp | 2 +- Userland/man.cpp | 2 +- Userland/md.cpp | 2 +- Userland/mount.cpp | 2 +- Userland/paste.cpp | 2 +- 59 files changed, 59 insertions(+), 59 deletions(-) diff --git a/AK/JsonArraySerializer.h b/AK/JsonArraySerializer.h index 95f52ab13dc..9a2ae4116bb 100644 --- a/AK/JsonArraySerializer.h +++ b/AK/JsonArraySerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/AK/JsonObjectSerializer.h b/AK/JsonObjectSerializer.h index 4360275c175..6d15c7278fb 100644 --- a/AK/JsonObjectSerializer.h +++ b/AK/JsonObjectSerializer.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/AK/Tests/TestUtf8.cpp b/AK/Tests/TestUtf8.cpp index 60c2724fa0b..e9c437d6ffb 100644 --- a/AK/Tests/TestUtf8.cpp +++ b/AK/Tests/TestUtf8.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/AK/Utf8View.cpp b/AK/Utf8View.cpp index cf8502ca0a3..847bef01f74 100644 --- a/AK/Utf8View.cpp +++ b/AK/Utf8View.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/AK/Utf8View.h b/AK/Utf8View.h index 4e7813efa97..1a4a26ae094 100644 --- a/AK/Utf8View.h +++ b/AK/Utf8View.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Applications/Calculator/Calculator.cpp b/Applications/Calculator/Calculator.cpp index 8f5a2525517..50a9bbc5156 100644 --- a/Applications/Calculator/Calculator.cpp +++ b/Applications/Calculator/Calculator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Applications/Calculator/Calculator.h b/Applications/Calculator/Calculator.h index 1d89f7887c6..c53e31c3970 100644 --- a/Applications/Calculator/Calculator.h +++ b/Applications/Calculator/Calculator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Applications/Calculator/CalculatorWidget.cpp b/Applications/Calculator/CalculatorWidget.cpp index 42006beced5..32fa5c494bb 100644 --- a/Applications/Calculator/CalculatorWidget.cpp +++ b/Applications/Calculator/CalculatorWidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Applications/Calculator/CalculatorWidget.h b/Applications/Calculator/CalculatorWidget.h index 087a549a1bf..bc0d1635359 100644 --- a/Applications/Calculator/CalculatorWidget.h +++ b/Applications/Calculator/CalculatorWidget.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Applications/Calculator/Keypad.cpp b/Applications/Calculator/Keypad.cpp index 7c06a4f391a..3681c4b8797 100644 --- a/Applications/Calculator/Keypad.cpp +++ b/Applications/Calculator/Keypad.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Applications/Calculator/Keypad.h b/Applications/Calculator/Keypad.h index 232fc8b64f7..794caac8c3d 100644 --- a/Applications/Calculator/Keypad.h +++ b/Applications/Calculator/Keypad.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Applications/Calculator/main.cpp b/Applications/Calculator/main.cpp index e43f28a8dfb..ab7780b9a49 100644 --- a/Applications/Calculator/main.cpp +++ b/Applications/Calculator/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Applications/Help/History.cpp b/Applications/Help/History.cpp index 7587f326589..bb4c822dcb5 100644 --- a/Applications/Help/History.cpp +++ b/Applications/Help/History.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Applications/Help/History.h b/Applications/Help/History.h index 1f50c98dced..744176df957 100644 --- a/Applications/Help/History.h +++ b/Applications/Help/History.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Applications/Help/ManualModel.cpp b/Applications/Help/ManualModel.cpp index f49b3b54584..8086c597826 100644 --- a/Applications/Help/ManualModel.cpp +++ b/Applications/Help/ManualModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Applications/Help/ManualModel.h b/Applications/Help/ManualModel.h index 41c8bf31856..52e9b67ad61 100644 --- a/Applications/Help/ManualModel.h +++ b/Applications/Help/ManualModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Applications/Help/ManualNode.h b/Applications/Help/ManualNode.h index 1a7d5d7c2b2..14efc8c5ee8 100644 --- a/Applications/Help/ManualNode.h +++ b/Applications/Help/ManualNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Applications/Help/ManualPageNode.cpp b/Applications/Help/ManualPageNode.cpp index ff38756b562..594a002b1b0 100644 --- a/Applications/Help/ManualPageNode.cpp +++ b/Applications/Help/ManualPageNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Applications/Help/ManualPageNode.h b/Applications/Help/ManualPageNode.h index 35cee697973..7fdedd405d7 100644 --- a/Applications/Help/ManualPageNode.h +++ b/Applications/Help/ManualPageNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Applications/Help/ManualSectionNode.cpp b/Applications/Help/ManualSectionNode.cpp index 1b4e3256faf..14f6d257a17 100644 --- a/Applications/Help/ManualSectionNode.cpp +++ b/Applications/Help/ManualSectionNode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Applications/Help/ManualSectionNode.h b/Applications/Help/ManualSectionNode.h index cecc1f1bebc..b82614e7c8b 100644 --- a/Applications/Help/ManualSectionNode.h +++ b/Applications/Help/ManualSectionNode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Applications/Help/main.cpp b/Applications/Help/main.cpp index 6debcc75d6d..5b626fc4a36 100644 --- a/Applications/Help/main.cpp +++ b/Applications/Help/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Applications/SystemMonitor/DevicesModel.cpp b/Applications/SystemMonitor/DevicesModel.cpp index 7dc579fd5f1..9a44fefd62e 100644 --- a/Applications/SystemMonitor/DevicesModel.cpp +++ b/Applications/SystemMonitor/DevicesModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Applications/SystemMonitor/DevicesModel.h b/Applications/SystemMonitor/DevicesModel.h index 0b0b80772d4..dce58af3ae6 100644 --- a/Applications/SystemMonitor/DevicesModel.h +++ b/Applications/SystemMonitor/DevicesModel.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Kernel/FileSystem/DevPtsFS.cpp b/Kernel/FileSystem/DevPtsFS.cpp index 930a6fb05f5..bec4c302d9f 100644 --- a/Kernel/FileSystem/DevPtsFS.cpp +++ b/Kernel/FileSystem/DevPtsFS.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Kernel/FileSystem/DevPtsFS.h b/Kernel/FileSystem/DevPtsFS.h index 7523e730b11..fb11222f721 100644 --- a/Kernel/FileSystem/DevPtsFS.h +++ b/Kernel/FileSystem/DevPtsFS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Kernel/FileSystem/TmpFS.cpp b/Kernel/FileSystem/TmpFS.cpp index eb7e3ce545d..a5df3c0da1e 100644 --- a/Kernel/FileSystem/TmpFS.cpp +++ b/Kernel/FileSystem/TmpFS.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Kernel/FileSystem/TmpFS.h b/Kernel/FileSystem/TmpFS.h index 65a08fb3199..853eef4755f 100644 --- a/Kernel/FileSystem/TmpFS.h +++ b/Kernel/FileSystem/TmpFS.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibC/libgen.cpp b/Libraries/LibC/libgen.cpp index 1976c38da36..13b6e668b85 100644 --- a/Libraries/LibC/libgen.cpp +++ b/Libraries/LibC/libgen.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibC/libgen.h b/Libraries/LibC/libgen.h index 2d3704ea0ad..9cbf66b0e60 100644 --- a/Libraries/LibC/libgen.h +++ b/Libraries/LibC/libgen.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibDraw/Emoji.cpp b/Libraries/LibDraw/Emoji.cpp index 57453be3ad6..43f341b639a 100644 --- a/Libraries/LibDraw/Emoji.cpp +++ b/Libraries/LibDraw/Emoji.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibDraw/Emoji.h b/Libraries/LibDraw/Emoji.h index dca7f900584..a8257f08e58 100644 --- a/Libraries/LibDraw/Emoji.h +++ b/Libraries/LibDraw/Emoji.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibGUI/GColumnsView.cpp b/Libraries/LibGUI/GColumnsView.cpp index 882c42a3c3b..f762dee9693 100644 --- a/Libraries/LibGUI/GColumnsView.cpp +++ b/Libraries/LibGUI/GColumnsView.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibGUI/GColumnsView.h b/Libraries/LibGUI/GColumnsView.h index 3e98f33cfe4..b0f65fa94ec 100644 --- a/Libraries/LibGUI/GColumnsView.h +++ b/Libraries/LibGUI/GColumnsView.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibMarkdown/MDBlock.h b/Libraries/LibMarkdown/MDBlock.h index a0f45ffea08..b22265f4228 100644 --- a/Libraries/LibMarkdown/MDBlock.h +++ b/Libraries/LibMarkdown/MDBlock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibMarkdown/MDCodeBlock.cpp b/Libraries/LibMarkdown/MDCodeBlock.cpp index 4817c170152..683285d6707 100644 --- a/Libraries/LibMarkdown/MDCodeBlock.cpp +++ b/Libraries/LibMarkdown/MDCodeBlock.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibMarkdown/MDCodeBlock.h b/Libraries/LibMarkdown/MDCodeBlock.h index 2a7c10faf95..3d1ca9bf883 100644 --- a/Libraries/LibMarkdown/MDCodeBlock.h +++ b/Libraries/LibMarkdown/MDCodeBlock.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibMarkdown/MDDocument.cpp b/Libraries/LibMarkdown/MDDocument.cpp index d9dbcb92f64..dae3ff26104 100644 --- a/Libraries/LibMarkdown/MDDocument.cpp +++ b/Libraries/LibMarkdown/MDDocument.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibMarkdown/MDDocument.h b/Libraries/LibMarkdown/MDDocument.h index 988d5fd68f8..549066ae723 100644 --- a/Libraries/LibMarkdown/MDDocument.h +++ b/Libraries/LibMarkdown/MDDocument.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibMarkdown/MDHeading.cpp b/Libraries/LibMarkdown/MDHeading.cpp index fcec513af71..4085b8fedf5 100644 --- a/Libraries/LibMarkdown/MDHeading.cpp +++ b/Libraries/LibMarkdown/MDHeading.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibMarkdown/MDHeading.h b/Libraries/LibMarkdown/MDHeading.h index 9e3c5559053..1be362c1dde 100644 --- a/Libraries/LibMarkdown/MDHeading.h +++ b/Libraries/LibMarkdown/MDHeading.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibMarkdown/MDList.cpp b/Libraries/LibMarkdown/MDList.cpp index bd28a7da95a..e892f982490 100644 --- a/Libraries/LibMarkdown/MDList.cpp +++ b/Libraries/LibMarkdown/MDList.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibMarkdown/MDList.h b/Libraries/LibMarkdown/MDList.h index 0ed9c8874a1..ec3b17f9c3d 100644 --- a/Libraries/LibMarkdown/MDList.h +++ b/Libraries/LibMarkdown/MDList.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibMarkdown/MDParagraph.cpp b/Libraries/LibMarkdown/MDParagraph.cpp index 4b48e9169ac..12b7eecf739 100644 --- a/Libraries/LibMarkdown/MDParagraph.cpp +++ b/Libraries/LibMarkdown/MDParagraph.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibMarkdown/MDParagraph.h b/Libraries/LibMarkdown/MDParagraph.h index 38c09086b5b..123e7b41827 100644 --- a/Libraries/LibMarkdown/MDParagraph.h +++ b/Libraries/LibMarkdown/MDParagraph.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibMarkdown/MDText.cpp b/Libraries/LibMarkdown/MDText.cpp index b710ab8d9e0..9c521553a4c 100644 --- a/Libraries/LibMarkdown/MDText.cpp +++ b/Libraries/LibMarkdown/MDText.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibMarkdown/MDText.h b/Libraries/LibMarkdown/MDText.h index 0c5ee932dbd..a4f47b5e53e 100644 --- a/Libraries/LibMarkdown/MDText.h +++ b/Libraries/LibMarkdown/MDText.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibThread/BackgroundAction.cpp b/Libraries/LibThread/BackgroundAction.cpp index 8a5c2daed8b..f2545d0a5d8 100644 --- a/Libraries/LibThread/BackgroundAction.cpp +++ b/Libraries/LibThread/BackgroundAction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibThread/BackgroundAction.h b/Libraries/LibThread/BackgroundAction.h index 076e3d3bff7..44cece2b754 100644 --- a/Libraries/LibThread/BackgroundAction.h +++ b/Libraries/LibThread/BackgroundAction.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibThread/Thread.cpp b/Libraries/LibThread/Thread.cpp index 8e2e6bf5d57..26ee7a4d6a7 100644 --- a/Libraries/LibThread/Thread.cpp +++ b/Libraries/LibThread/Thread.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Libraries/LibThread/Thread.h b/Libraries/LibThread/Thread.h index dd12598159f..12db8bda846 100644 --- a/Libraries/LibThread/Thread.h +++ b/Libraries/LibThread/Thread.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Servers/SystemServer/Service.cpp b/Servers/SystemServer/Service.cpp index 487a1a181f3..cbe1500f4c2 100644 --- a/Servers/SystemServer/Service.cpp +++ b/Servers/SystemServer/Service.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Servers/SystemServer/Service.h b/Servers/SystemServer/Service.h index 91797afcb8b..a5cad72d752 100644 --- a/Servers/SystemServer/Service.h +++ b/Servers/SystemServer/Service.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Userland/chroot.cpp b/Userland/chroot.cpp index f0d400604a8..f209f6a1974 100644 --- a/Userland/chroot.cpp +++ b/Userland/chroot.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Userland/copy.cpp b/Userland/copy.cpp index aa16c21e88b..708f8e929a0 100644 --- a/Userland/copy.cpp +++ b/Userland/copy.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Userland/man.cpp b/Userland/man.cpp index 34f238b7d77..91066fec0ba 100644 --- a/Userland/man.cpp +++ b/Userland/man.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Userland/md.cpp b/Userland/md.cpp index fb2218780f7..fc3fc51bd39 100644 --- a/Userland/md.cpp +++ b/Userland/md.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Userland/mount.cpp b/Userland/mount.cpp index e2964d978b6..f2da19c69c7 100644 --- a/Userland/mount.cpp +++ b/Userland/mount.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/Userland/paste.cpp b/Userland/paste.cpp index d86ec48e1fe..024d06027cd 100644 --- a/Userland/paste.cpp +++ b/Userland/paste.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020, Andreas Kling + * Copyright (c) 2019-2020, Sergey Bugaev * All rights reserved. * * Redistribution and use in source and binary forms, with or without