From 2eb2cf1eda398d601d25669b45ac4d0972c64001 Mon Sep 17 00:00:00 2001 From: Timothy Schenk Date: Mon, 26 Feb 2024 13:18:04 +0100 Subject: [PATCH] chore: license final adjustments --- .editorconfig | 2 +- Rai.PacketMediator/IBidirectionalPacket.cs | 2 +- Rai.PacketMediator/IIncomingPacket.cs | 2 +- Rai.PacketMediator/IOutgoingPacket.cs | 2 +- Rai.PacketMediator/IPacket.cs | 2 +- Rai.PacketMediator/IPacketHandler.cs | 2 +- Rai.PacketMediator/PacketDistributor.cs | 2 +- Rai.PacketMediator/PacketDistributorService.cs | 2 +- Rai.PacketMediator/PacketIdAttribute.cs | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.editorconfig b/.editorconfig index bfc8d84..5ae5793 100644 --- a/.editorconfig +++ b/.editorconfig @@ -23,7 +23,7 @@ indent_style = space charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true -file_header_template = Licensed to Timothy Schenk under the GNU AGPL Version 3 License. +file_header_template = Licensed to Timothy Schenk under the Apache 2.0 License. [*.{yaml,yml}] indent_size = 2 diff --git a/Rai.PacketMediator/IBidirectionalPacket.cs b/Rai.PacketMediator/IBidirectionalPacket.cs index 88d8450..9f8b78f 100644 --- a/Rai.PacketMediator/IBidirectionalPacket.cs +++ b/Rai.PacketMediator/IBidirectionalPacket.cs @@ -1,4 +1,4 @@ -// Licensed to Timothy Schenk under the GNU AGPL Version 3 License. +// Licensed to Timothy Schenk under the Apache 2.0 License. using JetBrains.Annotations; diff --git a/Rai.PacketMediator/IIncomingPacket.cs b/Rai.PacketMediator/IIncomingPacket.cs index c0f5907..16388f0 100644 --- a/Rai.PacketMediator/IIncomingPacket.cs +++ b/Rai.PacketMediator/IIncomingPacket.cs @@ -1,4 +1,4 @@ -// Licensed to Timothy Schenk under the GNU AGPL Version 3 License. +// Licensed to Timothy Schenk under the Apache 2.0 License. using JetBrains.Annotations; diff --git a/Rai.PacketMediator/IOutgoingPacket.cs b/Rai.PacketMediator/IOutgoingPacket.cs index ebf57c1..2a1ab3c 100644 --- a/Rai.PacketMediator/IOutgoingPacket.cs +++ b/Rai.PacketMediator/IOutgoingPacket.cs @@ -1,4 +1,4 @@ -// Licensed to Timothy Schenk under the GNU AGPL Version 3 License. +// Licensed to Timothy Schenk under the Apache 2.0 License. using JetBrains.Annotations; diff --git a/Rai.PacketMediator/IPacket.cs b/Rai.PacketMediator/IPacket.cs index 1044db9..ae02f2e 100644 --- a/Rai.PacketMediator/IPacket.cs +++ b/Rai.PacketMediator/IPacket.cs @@ -1,4 +1,4 @@ -// Licensed to Timothy Schenk under the GNU AGPL Version 3 License. +// Licensed to Timothy Schenk under the Apache 2.0 License. namespace Rai.PacketMediator; diff --git a/Rai.PacketMediator/IPacketHandler.cs b/Rai.PacketMediator/IPacketHandler.cs index 72ef6bb..8cedcf8 100644 --- a/Rai.PacketMediator/IPacketHandler.cs +++ b/Rai.PacketMediator/IPacketHandler.cs @@ -1,4 +1,4 @@ -// Licensed to Timothy Schenk under the GNU AGPL Version 3 License. +// Licensed to Timothy Schenk under the Apache 2.0 License. using System.Diagnostics; using JetBrains.Annotations; diff --git a/Rai.PacketMediator/PacketDistributor.cs b/Rai.PacketMediator/PacketDistributor.cs index f020340..821b944 100644 --- a/Rai.PacketMediator/PacketDistributor.cs +++ b/Rai.PacketMediator/PacketDistributor.cs @@ -1,4 +1,4 @@ -// Licensed to Timothy Schenk under the GNU AGPL Version 3 License. +// Licensed to Timothy Schenk under the Apache 2.0 License. using System.Collections.Concurrent; using System.Collections.Immutable; diff --git a/Rai.PacketMediator/PacketDistributorService.cs b/Rai.PacketMediator/PacketDistributorService.cs index c1a94ee..8917ca0 100644 --- a/Rai.PacketMediator/PacketDistributorService.cs +++ b/Rai.PacketMediator/PacketDistributorService.cs @@ -1,4 +1,4 @@ -// Licensed to Timothy Schenk under the GNU AGPL Version 3 License. +// Licensed to Timothy Schenk under the Apache 2.0 License. using System.Reflection; using Microsoft.Extensions.Hosting; diff --git a/Rai.PacketMediator/PacketIdAttribute.cs b/Rai.PacketMediator/PacketIdAttribute.cs index c4fdb64..6199bcc 100644 --- a/Rai.PacketMediator/PacketIdAttribute.cs +++ b/Rai.PacketMediator/PacketIdAttribute.cs @@ -1,4 +1,4 @@ -// Licensed to Timothy Schenk under the GNU AGPL Version 3 License. +// Licensed to Timothy Schenk under the Apache 2.0 License. namespace Rai.PacketMediator;