From d1c394dca76d5f1ecf67e18b70a06c34a5445dd8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Tue, 9 Jan 2024 23:46:42 +0100 Subject: [PATCH] Updated copyright year MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- lib/jcore-utils.jar | Bin 8423 -> 8423 bytes .../added/AdminAddedCategoryEvent.java | 2 +- .../ObservableAdminAddedCategoryEvent.java | 2 +- .../updated/AdminUpdatedCategoryEvent.java | 2 +- .../ObservableAdminUpdatedCategoryEvent.java | 2 +- .../product/added/AddedProductEvent.java | 2 +- .../product/added/ProductAddedEvent.java | 2 +- .../ObservableProductUpdatedEvent.java | 2 +- .../product/updated/ProductUpdatedEvent.java | 2 +- .../CategoryAlreadyAddedException.java | 2 +- .../category/CategoryNotFoundException.java | 2 +- .../product/ProductAlreadyAddedException.java | 2 +- .../product/ProductNotFoundException.java | 2 +- .../jproduct/model/category/Category.java | 2 +- .../model/category/ProductCategory.java | 2 +- .../jproduct/model/payment/PaymentType.java | 2 +- .../model/product/GenericProduct.java | 2 +- .../jproduct/model/product/Product.java | 2 +- .../model/product/agegroup/AgeGroup.java | 2 +- .../jproduct/model/utils/CategoryUtils.java | 2 +- .../jproduct/model/utils/ProductUtils.java | 2 +- 21 files changed, 20 insertions(+), 20 deletions(-) diff --git a/lib/jcore-utils.jar b/lib/jcore-utils.jar index d23fad0b8e39ebf21fa2b2369f219d6b2c3f16aa..9c93598ea636f4cc0061fc9b1feaf4a959d3a296 100644 GIT binary patch delta 14 WcmaFv_}p>BFD6El&A*x6$N~U2`v&U( delta 14 WcmaFv_}p>BFD6E#&A*x6$N~U2?*{1r diff --git a/src/org/mxchange/jproduct/events/category/added/AdminAddedCategoryEvent.java b/src/org/mxchange/jproduct/events/category/added/AdminAddedCategoryEvent.java index c05cf10..50d228f 100644 --- a/src/org/mxchange/jproduct/events/category/added/AdminAddedCategoryEvent.java +++ b/src/org/mxchange/jproduct/events/category/added/AdminAddedCategoryEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 - 2022 Free Software Foundation + * Copyright (C) 2016 - 2024 Free Software Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/org/mxchange/jproduct/events/category/added/ObservableAdminAddedCategoryEvent.java b/src/org/mxchange/jproduct/events/category/added/ObservableAdminAddedCategoryEvent.java index f0bd724..5b34d74 100644 --- a/src/org/mxchange/jproduct/events/category/added/ObservableAdminAddedCategoryEvent.java +++ b/src/org/mxchange/jproduct/events/category/added/ObservableAdminAddedCategoryEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 - 2022 Free Software Foundation + * Copyright (C) 2016 - 2024 Free Software Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/org/mxchange/jproduct/events/category/updated/AdminUpdatedCategoryEvent.java b/src/org/mxchange/jproduct/events/category/updated/AdminUpdatedCategoryEvent.java index 07f642d..f6e6fd8 100644 --- a/src/org/mxchange/jproduct/events/category/updated/AdminUpdatedCategoryEvent.java +++ b/src/org/mxchange/jproduct/events/category/updated/AdminUpdatedCategoryEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 - 2022 Free Software Foundation + * Copyright (C) 2016 - 2024 Free Software Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/org/mxchange/jproduct/events/category/updated/ObservableAdminUpdatedCategoryEvent.java b/src/org/mxchange/jproduct/events/category/updated/ObservableAdminUpdatedCategoryEvent.java index 9bb3038..01ba5c8 100644 --- a/src/org/mxchange/jproduct/events/category/updated/ObservableAdminUpdatedCategoryEvent.java +++ b/src/org/mxchange/jproduct/events/category/updated/ObservableAdminUpdatedCategoryEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 - 2022 Free Software Foundation + * Copyright (C) 2016 - 2024 Free Software Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/org/mxchange/jproduct/events/product/added/AddedProductEvent.java b/src/org/mxchange/jproduct/events/product/added/AddedProductEvent.java index 8ace1a4..a36b137 100644 --- a/src/org/mxchange/jproduct/events/product/added/AddedProductEvent.java +++ b/src/org/mxchange/jproduct/events/product/added/AddedProductEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 - 2022 Free Software Foundation + * Copyright (C) 2016 - 2024 Free Software Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/org/mxchange/jproduct/events/product/added/ProductAddedEvent.java b/src/org/mxchange/jproduct/events/product/added/ProductAddedEvent.java index a47e580..89324e8 100644 --- a/src/org/mxchange/jproduct/events/product/added/ProductAddedEvent.java +++ b/src/org/mxchange/jproduct/events/product/added/ProductAddedEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 - 2022 Free Software Foundation + * Copyright (C) 2016 - 2024 Free Software Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/org/mxchange/jproduct/events/product/updated/ObservableProductUpdatedEvent.java b/src/org/mxchange/jproduct/events/product/updated/ObservableProductUpdatedEvent.java index ed7c193..0ceaa48 100644 --- a/src/org/mxchange/jproduct/events/product/updated/ObservableProductUpdatedEvent.java +++ b/src/org/mxchange/jproduct/events/product/updated/ObservableProductUpdatedEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 - 2022 Free Software Foundation + * Copyright (C) 2016 - 2024 Free Software Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/org/mxchange/jproduct/events/product/updated/ProductUpdatedEvent.java b/src/org/mxchange/jproduct/events/product/updated/ProductUpdatedEvent.java index 6cde419..0ad4742 100644 --- a/src/org/mxchange/jproduct/events/product/updated/ProductUpdatedEvent.java +++ b/src/org/mxchange/jproduct/events/product/updated/ProductUpdatedEvent.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 - 2022 Free Software Foundation + * Copyright (C) 2016 - 2024 Free Software Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/org/mxchange/jproduct/exceptions/category/CategoryAlreadyAddedException.java b/src/org/mxchange/jproduct/exceptions/category/CategoryAlreadyAddedException.java index 409d551..9292a6d 100644 --- a/src/org/mxchange/jproduct/exceptions/category/CategoryAlreadyAddedException.java +++ b/src/org/mxchange/jproduct/exceptions/category/CategoryAlreadyAddedException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 - 2022 Free Software Foundation + * Copyright (C) 2016 - 2024 Free Software Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/org/mxchange/jproduct/exceptions/category/CategoryNotFoundException.java b/src/org/mxchange/jproduct/exceptions/category/CategoryNotFoundException.java index 8091c01..b9e62d2 100644 --- a/src/org/mxchange/jproduct/exceptions/category/CategoryNotFoundException.java +++ b/src/org/mxchange/jproduct/exceptions/category/CategoryNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 - 2022 Free Software Foundation + * Copyright (C) 2016 - 2024 Free Software Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/org/mxchange/jproduct/exceptions/product/ProductAlreadyAddedException.java b/src/org/mxchange/jproduct/exceptions/product/ProductAlreadyAddedException.java index 9cd6880..d1a0f6d 100644 --- a/src/org/mxchange/jproduct/exceptions/product/ProductAlreadyAddedException.java +++ b/src/org/mxchange/jproduct/exceptions/product/ProductAlreadyAddedException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 - 2022 Free Software Foundation + * Copyright (C) 2016 - 2024 Free Software Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/org/mxchange/jproduct/exceptions/product/ProductNotFoundException.java b/src/org/mxchange/jproduct/exceptions/product/ProductNotFoundException.java index f7b762a..cdfefd4 100644 --- a/src/org/mxchange/jproduct/exceptions/product/ProductNotFoundException.java +++ b/src/org/mxchange/jproduct/exceptions/product/ProductNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 - 2022 Free Software Foundation + * Copyright (C) 2016 - 2024 Free Software Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/org/mxchange/jproduct/model/category/Category.java b/src/org/mxchange/jproduct/model/category/Category.java index b3a6910..64d4c3b 100644 --- a/src/org/mxchange/jproduct/model/category/Category.java +++ b/src/org/mxchange/jproduct/model/category/Category.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 - 2022 Free Software Foundation + * Copyright (C) 2016 - 2024 Free Software Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/org/mxchange/jproduct/model/category/ProductCategory.java b/src/org/mxchange/jproduct/model/category/ProductCategory.java index 643aeb3..0b79a3e 100644 --- a/src/org/mxchange/jproduct/model/category/ProductCategory.java +++ b/src/org/mxchange/jproduct/model/category/ProductCategory.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 - 2022 Free Software Foundation + * Copyright (C) 2016 - 2024 Free Software Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/org/mxchange/jproduct/model/payment/PaymentType.java b/src/org/mxchange/jproduct/model/payment/PaymentType.java index b413979..cac9897 100644 --- a/src/org/mxchange/jproduct/model/payment/PaymentType.java +++ b/src/org/mxchange/jproduct/model/payment/PaymentType.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 - 2022 Free Software Foundation + * Copyright (C) 2016 - 2024 Free Software Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/org/mxchange/jproduct/model/product/GenericProduct.java b/src/org/mxchange/jproduct/model/product/GenericProduct.java index 5642d8e..fdf06a6 100644 --- a/src/org/mxchange/jproduct/model/product/GenericProduct.java +++ b/src/org/mxchange/jproduct/model/product/GenericProduct.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 - 2022 Free Software Foundation + * Copyright (C) 2016 - 2024 Free Software Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/org/mxchange/jproduct/model/product/Product.java b/src/org/mxchange/jproduct/model/product/Product.java index 5965aa7..79c492f 100644 --- a/src/org/mxchange/jproduct/model/product/Product.java +++ b/src/org/mxchange/jproduct/model/product/Product.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 - 2022 Free Software Foundation + * Copyright (C) 2016 - 2024 Free Software Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/org/mxchange/jproduct/model/product/agegroup/AgeGroup.java b/src/org/mxchange/jproduct/model/product/agegroup/AgeGroup.java index c3f5065..0a48ff7 100644 --- a/src/org/mxchange/jproduct/model/product/agegroup/AgeGroup.java +++ b/src/org/mxchange/jproduct/model/product/agegroup/AgeGroup.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 - 2022 Free Software Foundation + * Copyright (C) 2017 - 2024 Free Software Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/org/mxchange/jproduct/model/utils/CategoryUtils.java b/src/org/mxchange/jproduct/model/utils/CategoryUtils.java index 891f1d8..a8d2106 100644 --- a/src/org/mxchange/jproduct/model/utils/CategoryUtils.java +++ b/src/org/mxchange/jproduct/model/utils/CategoryUtils.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022 Free Software Foundation + * Copyright (C) 2024 Free Software Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/org/mxchange/jproduct/model/utils/ProductUtils.java b/src/org/mxchange/jproduct/model/utils/ProductUtils.java index 7c8f383..e17cde2 100644 --- a/src/org/mxchange/jproduct/model/utils/ProductUtils.java +++ b/src/org/mxchange/jproduct/model/utils/ProductUtils.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022 Free Software Foundation + * Copyright (C) 2024 Free Software Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by -- 2.39.5