From f0112502b54583c825476c412a1077690f3764f4 Mon Sep 17 00:00:00 2001 From: Alexis Date: Wed, 5 Jun 2024 21:03:56 +0200 Subject: [PATCH] Update the license date --- LICENSE.txt | 2 +- .../java/com/github/alexisjehan/mender/api/MendCandidate.java | 2 +- .../java/com/github/alexisjehan/mender/api/MendException.java | 2 +- src/main/java/com/github/alexisjehan/mender/api/MendResult.java | 2 +- src/main/java/com/github/alexisjehan/mender/api/Mender.java | 2 +- .../alexisjehan/mender/api/evaluators/ConstraintEvaluator.java | 2 +- .../alexisjehan/mender/api/evaluators/EstimationEvaluator.java | 2 +- .../com/github/alexisjehan/mender/api/evaluators/Evaluator.java | 2 +- .../github/alexisjehan/mender/api/evaluators/package-info.java | 2 +- .../java/com/github/alexisjehan/mender/api/package-info.java | 2 +- .../com/github/alexisjehan/mender/dsv/DsvMendCandidate.java | 2 +- .../java/com/github/alexisjehan/mender/dsv/DsvMendResult.java | 2 +- src/main/java/com/github/alexisjehan/mender/dsv/DsvMender.java | 2 +- .../java/com/github/alexisjehan/mender/dsv/package-info.java | 2 +- src/main/java/examples/ConcreteExample.java | 2 +- src/main/java/examples/OptimizeExample.java | 2 +- src/main/java/examples/SimpleExample.java | 2 +- .../com/github/alexisjehan/mender/api/MendExceptionTest.java | 2 +- .../mender/api/evaluators/ConstraintEvaluatorTest.java | 2 +- .../mender/api/evaluators/EstimationEvaluatorTest.java | 2 +- .../com/github/alexisjehan/mender/dsv/DsvMendCandidateTest.java | 2 +- .../com/github/alexisjehan/mender/dsv/DsvMendResultTest.java | 2 +- .../com/github/alexisjehan/mender/dsv/DsvMenderBuilderTest.java | 2 +- .../java/com/github/alexisjehan/mender/dsv/DsvMenderTest.java | 2 +- 24 files changed, 24 insertions(+), 24 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index f802b13..2bfb21a 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017-2023 Alexis Jehan +Copyright (c) 2017-2024 Alexis Jehan Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/alexisjehan/mender/api/MendCandidate.java b/src/main/java/com/github/alexisjehan/mender/api/MendCandidate.java index 5ad1eef..b479b75 100644 --- a/src/main/java/com/github/alexisjehan/mender/api/MendCandidate.java +++ b/src/main/java/com/github/alexisjehan/mender/api/MendCandidate.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/alexisjehan/mender/api/MendException.java b/src/main/java/com/github/alexisjehan/mender/api/MendException.java index 738dbfd..ac5b445 100644 --- a/src/main/java/com/github/alexisjehan/mender/api/MendException.java +++ b/src/main/java/com/github/alexisjehan/mender/api/MendException.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/alexisjehan/mender/api/MendResult.java b/src/main/java/com/github/alexisjehan/mender/api/MendResult.java index 69db000..af6d98d 100644 --- a/src/main/java/com/github/alexisjehan/mender/api/MendResult.java +++ b/src/main/java/com/github/alexisjehan/mender/api/MendResult.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/alexisjehan/mender/api/Mender.java b/src/main/java/com/github/alexisjehan/mender/api/Mender.java index 85dae62..3b1a066 100644 --- a/src/main/java/com/github/alexisjehan/mender/api/Mender.java +++ b/src/main/java/com/github/alexisjehan/mender/api/Mender.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/alexisjehan/mender/api/evaluators/ConstraintEvaluator.java b/src/main/java/com/github/alexisjehan/mender/api/evaluators/ConstraintEvaluator.java index 85768a1..6cad7b0 100644 --- a/src/main/java/com/github/alexisjehan/mender/api/evaluators/ConstraintEvaluator.java +++ b/src/main/java/com/github/alexisjehan/mender/api/evaluators/ConstraintEvaluator.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/alexisjehan/mender/api/evaluators/EstimationEvaluator.java b/src/main/java/com/github/alexisjehan/mender/api/evaluators/EstimationEvaluator.java index 3c7721f..06d0fbf 100644 --- a/src/main/java/com/github/alexisjehan/mender/api/evaluators/EstimationEvaluator.java +++ b/src/main/java/com/github/alexisjehan/mender/api/evaluators/EstimationEvaluator.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/alexisjehan/mender/api/evaluators/Evaluator.java b/src/main/java/com/github/alexisjehan/mender/api/evaluators/Evaluator.java index 8145717..4545e03 100644 --- a/src/main/java/com/github/alexisjehan/mender/api/evaluators/Evaluator.java +++ b/src/main/java/com/github/alexisjehan/mender/api/evaluators/Evaluator.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/alexisjehan/mender/api/evaluators/package-info.java b/src/main/java/com/github/alexisjehan/mender/api/evaluators/package-info.java index 3105888..cc55ba7 100644 --- a/src/main/java/com/github/alexisjehan/mender/api/evaluators/package-info.java +++ b/src/main/java/com/github/alexisjehan/mender/api/evaluators/package-info.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/alexisjehan/mender/api/package-info.java b/src/main/java/com/github/alexisjehan/mender/api/package-info.java index 233d432..027fff3 100644 --- a/src/main/java/com/github/alexisjehan/mender/api/package-info.java +++ b/src/main/java/com/github/alexisjehan/mender/api/package-info.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/alexisjehan/mender/dsv/DsvMendCandidate.java b/src/main/java/com/github/alexisjehan/mender/dsv/DsvMendCandidate.java index f298bf3..36e9382 100644 --- a/src/main/java/com/github/alexisjehan/mender/dsv/DsvMendCandidate.java +++ b/src/main/java/com/github/alexisjehan/mender/dsv/DsvMendCandidate.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/alexisjehan/mender/dsv/DsvMendResult.java b/src/main/java/com/github/alexisjehan/mender/dsv/DsvMendResult.java index 6389b5a..86bec0d 100644 --- a/src/main/java/com/github/alexisjehan/mender/dsv/DsvMendResult.java +++ b/src/main/java/com/github/alexisjehan/mender/dsv/DsvMendResult.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/alexisjehan/mender/dsv/DsvMender.java b/src/main/java/com/github/alexisjehan/mender/dsv/DsvMender.java index 47da9dd..0275699 100644 --- a/src/main/java/com/github/alexisjehan/mender/dsv/DsvMender.java +++ b/src/main/java/com/github/alexisjehan/mender/dsv/DsvMender.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/github/alexisjehan/mender/dsv/package-info.java b/src/main/java/com/github/alexisjehan/mender/dsv/package-info.java index 429ba27..5393556 100644 --- a/src/main/java/com/github/alexisjehan/mender/dsv/package-info.java +++ b/src/main/java/com/github/alexisjehan/mender/dsv/package-info.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/examples/ConcreteExample.java b/src/main/java/examples/ConcreteExample.java index 3dc4fee..aa90fb3 100644 --- a/src/main/java/examples/ConcreteExample.java +++ b/src/main/java/examples/ConcreteExample.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/examples/OptimizeExample.java b/src/main/java/examples/OptimizeExample.java index 6c05a05..85d50d4 100644 --- a/src/main/java/examples/OptimizeExample.java +++ b/src/main/java/examples/OptimizeExample.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/examples/SimpleExample.java b/src/main/java/examples/SimpleExample.java index bb7f535..548e21a 100644 --- a/src/main/java/examples/SimpleExample.java +++ b/src/main/java/examples/SimpleExample.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/alexisjehan/mender/api/MendExceptionTest.java b/src/test/java/com/github/alexisjehan/mender/api/MendExceptionTest.java index c408a7b..5011032 100644 --- a/src/test/java/com/github/alexisjehan/mender/api/MendExceptionTest.java +++ b/src/test/java/com/github/alexisjehan/mender/api/MendExceptionTest.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/alexisjehan/mender/api/evaluators/ConstraintEvaluatorTest.java b/src/test/java/com/github/alexisjehan/mender/api/evaluators/ConstraintEvaluatorTest.java index 242d9e8..0046096 100644 --- a/src/test/java/com/github/alexisjehan/mender/api/evaluators/ConstraintEvaluatorTest.java +++ b/src/test/java/com/github/alexisjehan/mender/api/evaluators/ConstraintEvaluatorTest.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/alexisjehan/mender/api/evaluators/EstimationEvaluatorTest.java b/src/test/java/com/github/alexisjehan/mender/api/evaluators/EstimationEvaluatorTest.java index dc9771c..35f16b0 100644 --- a/src/test/java/com/github/alexisjehan/mender/api/evaluators/EstimationEvaluatorTest.java +++ b/src/test/java/com/github/alexisjehan/mender/api/evaluators/EstimationEvaluatorTest.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/alexisjehan/mender/dsv/DsvMendCandidateTest.java b/src/test/java/com/github/alexisjehan/mender/dsv/DsvMendCandidateTest.java index 1e5a101..2909a7c 100644 --- a/src/test/java/com/github/alexisjehan/mender/dsv/DsvMendCandidateTest.java +++ b/src/test/java/com/github/alexisjehan/mender/dsv/DsvMendCandidateTest.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/alexisjehan/mender/dsv/DsvMendResultTest.java b/src/test/java/com/github/alexisjehan/mender/dsv/DsvMendResultTest.java index bf11161..892a7df 100644 --- a/src/test/java/com/github/alexisjehan/mender/dsv/DsvMendResultTest.java +++ b/src/test/java/com/github/alexisjehan/mender/dsv/DsvMendResultTest.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/alexisjehan/mender/dsv/DsvMenderBuilderTest.java b/src/test/java/com/github/alexisjehan/mender/dsv/DsvMenderBuilderTest.java index d989e4f..6fd3eaa 100644 --- a/src/test/java/com/github/alexisjehan/mender/dsv/DsvMenderBuilderTest.java +++ b/src/test/java/com/github/alexisjehan/mender/dsv/DsvMenderBuilderTest.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/test/java/com/github/alexisjehan/mender/dsv/DsvMenderTest.java b/src/test/java/com/github/alexisjehan/mender/dsv/DsvMenderTest.java index 873ce41..867db72 100644 --- a/src/test/java/com/github/alexisjehan/mender/dsv/DsvMenderTest.java +++ b/src/test/java/com/github/alexisjehan/mender/dsv/DsvMenderTest.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2017-2023 Alexis Jehan + * Copyright (c) 2017-2024 Alexis Jehan * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal