From 8afff68c9ee460a6d2e953a2370606bb0db318c0 Mon Sep 17 00:00:00 2001 From: Roman Ivanov Date: Sat, 15 Jan 2022 14:32:15 -0800 Subject: [PATCH] minor: bump year to 2022 --- src/main/java/com/github/checkstyle/regression/Main.java | 2 +- .../checkstyle/regression/configuration/ConfigGenerator.java | 2 +- .../checkstyle/regression/configuration/package-info.java | 2 +- .../java/com/github/checkstyle/regression/data/GitChange.java | 2 +- .../github/checkstyle/regression/data/ModuleExtractInfo.java | 2 +- .../java/com/github/checkstyle/regression/data/ModuleInfo.java | 2 +- .../com/github/checkstyle/regression/data/package-info.java | 2 +- .../checkstyle/regression/extract/CheckstyleInjector.java | 2 +- .../checkstyle/regression/extract/ExtractInfoProcessor.java | 2 +- .../github/checkstyle/regression/extract/InjectException.java | 2 +- .../com/github/checkstyle/regression/extract/package-info.java | 2 +- .../java/com/github/checkstyle/regression/git/DiffParser.java | 2 +- .../java/com/github/checkstyle/regression/git/package-info.java | 2 +- .../github/checkstyle/regression/module/ModuleCollector.java | 2 +- .../com/github/checkstyle/regression/module/ModuleUtils.java | 2 +- .../com/github/checkstyle/regression/module/package-info.java | 2 +- .../java/com/github/checkstyle/regression/package-info.java | 2 +- .../github/checkstyle/regression/report/ReportGenerator.java | 2 +- .../com/github/checkstyle/regression/report/package-info.java | 2 +- .../checkstyle/regression/extract/ExtractInfoGeneratorTest.java | 2 +- .../com/github/checkstyle/regression/extract/JsonUtil.java | 2 +- src/test/java/com/github/checkstyle/regression/MainTest.java | 2 +- .../regression/configuration/ConfigGeneratorTest.java | 2 +- .../checkstyle/regression/extract/CheckstyleInjectorTest.java | 2 +- .../checkstyle/regression/extract/ExtractInfoProcessorTest.java | 2 +- .../com/github/checkstyle/regression/git/DiffParserTest.java | 2 +- .../checkstyle/regression/internal/CommitValidationTest.java | 2 +- .../com/github/checkstyle/regression/internal/FileUtils.java | 2 +- .../com/github/checkstyle/regression/internal/GitUtils.java | 2 +- .../com/github/checkstyle/regression/internal/TestUtils.java | 2 +- .../checkstyle/regression/module/ModuleInfoCollectorTest.java | 2 +- .../github/checkstyle/regression/module/ModuleUtilsTest.java | 2 +- .../checkstyle/regression/report/ReportGeneratorTest.java | 2 +- 33 files changed, 33 insertions(+), 33 deletions(-) diff --git a/src/main/java/com/github/checkstyle/regression/Main.java b/src/main/java/com/github/checkstyle/regression/Main.java index 0925789..6843574 100644 --- a/src/main/java/com/github/checkstyle/regression/Main.java +++ b/src/main/java/com/github/checkstyle/regression/Main.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/main/java/com/github/checkstyle/regression/configuration/ConfigGenerator.java b/src/main/java/com/github/checkstyle/regression/configuration/ConfigGenerator.java index 368a659..3768ff5 100644 --- a/src/main/java/com/github/checkstyle/regression/configuration/ConfigGenerator.java +++ b/src/main/java/com/github/checkstyle/regression/configuration/ConfigGenerator.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/main/java/com/github/checkstyle/regression/configuration/package-info.java b/src/main/java/com/github/checkstyle/regression/configuration/package-info.java index 8f7dc9f..9c70974 100644 --- a/src/main/java/com/github/checkstyle/regression/configuration/package-info.java +++ b/src/main/java/com/github/checkstyle/regression/configuration/package-info.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/main/java/com/github/checkstyle/regression/data/GitChange.java b/src/main/java/com/github/checkstyle/regression/data/GitChange.java index d4a473d..5b9e9e6 100644 --- a/src/main/java/com/github/checkstyle/regression/data/GitChange.java +++ b/src/main/java/com/github/checkstyle/regression/data/GitChange.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/main/java/com/github/checkstyle/regression/data/ModuleExtractInfo.java b/src/main/java/com/github/checkstyle/regression/data/ModuleExtractInfo.java index f6d01ba..2ce7ac5 100644 --- a/src/main/java/com/github/checkstyle/regression/data/ModuleExtractInfo.java +++ b/src/main/java/com/github/checkstyle/regression/data/ModuleExtractInfo.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/main/java/com/github/checkstyle/regression/data/ModuleInfo.java b/src/main/java/com/github/checkstyle/regression/data/ModuleInfo.java index c76b16a..3c060f4 100644 --- a/src/main/java/com/github/checkstyle/regression/data/ModuleInfo.java +++ b/src/main/java/com/github/checkstyle/regression/data/ModuleInfo.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/main/java/com/github/checkstyle/regression/data/package-info.java b/src/main/java/com/github/checkstyle/regression/data/package-info.java index 88efc7f..b2eec79 100644 --- a/src/main/java/com/github/checkstyle/regression/data/package-info.java +++ b/src/main/java/com/github/checkstyle/regression/data/package-info.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/main/java/com/github/checkstyle/regression/extract/CheckstyleInjector.java b/src/main/java/com/github/checkstyle/regression/extract/CheckstyleInjector.java index 1be9183..757ef27 100644 --- a/src/main/java/com/github/checkstyle/regression/extract/CheckstyleInjector.java +++ b/src/main/java/com/github/checkstyle/regression/extract/CheckstyleInjector.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/main/java/com/github/checkstyle/regression/extract/ExtractInfoProcessor.java b/src/main/java/com/github/checkstyle/regression/extract/ExtractInfoProcessor.java index 63ecca7..e8dc51a 100644 --- a/src/main/java/com/github/checkstyle/regression/extract/ExtractInfoProcessor.java +++ b/src/main/java/com/github/checkstyle/regression/extract/ExtractInfoProcessor.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/main/java/com/github/checkstyle/regression/extract/InjectException.java b/src/main/java/com/github/checkstyle/regression/extract/InjectException.java index 80b8ba4..78e3d84 100644 --- a/src/main/java/com/github/checkstyle/regression/extract/InjectException.java +++ b/src/main/java/com/github/checkstyle/regression/extract/InjectException.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/main/java/com/github/checkstyle/regression/extract/package-info.java b/src/main/java/com/github/checkstyle/regression/extract/package-info.java index 46d8b71..371c132 100644 --- a/src/main/java/com/github/checkstyle/regression/extract/package-info.java +++ b/src/main/java/com/github/checkstyle/regression/extract/package-info.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/main/java/com/github/checkstyle/regression/git/DiffParser.java b/src/main/java/com/github/checkstyle/regression/git/DiffParser.java index e95c32b..427c047 100644 --- a/src/main/java/com/github/checkstyle/regression/git/DiffParser.java +++ b/src/main/java/com/github/checkstyle/regression/git/DiffParser.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/main/java/com/github/checkstyle/regression/git/package-info.java b/src/main/java/com/github/checkstyle/regression/git/package-info.java index 57bdda4..3192ba5 100644 --- a/src/main/java/com/github/checkstyle/regression/git/package-info.java +++ b/src/main/java/com/github/checkstyle/regression/git/package-info.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/main/java/com/github/checkstyle/regression/module/ModuleCollector.java b/src/main/java/com/github/checkstyle/regression/module/ModuleCollector.java index 32268b3..ec298c1 100644 --- a/src/main/java/com/github/checkstyle/regression/module/ModuleCollector.java +++ b/src/main/java/com/github/checkstyle/regression/module/ModuleCollector.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/main/java/com/github/checkstyle/regression/module/ModuleUtils.java b/src/main/java/com/github/checkstyle/regression/module/ModuleUtils.java index 6f44905..f1f9bc9 100644 --- a/src/main/java/com/github/checkstyle/regression/module/ModuleUtils.java +++ b/src/main/java/com/github/checkstyle/regression/module/ModuleUtils.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/main/java/com/github/checkstyle/regression/module/package-info.java b/src/main/java/com/github/checkstyle/regression/module/package-info.java index b7983ff..cf727ba 100644 --- a/src/main/java/com/github/checkstyle/regression/module/package-info.java +++ b/src/main/java/com/github/checkstyle/regression/module/package-info.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/main/java/com/github/checkstyle/regression/package-info.java b/src/main/java/com/github/checkstyle/regression/package-info.java index 72624cb..81cf6ed 100644 --- a/src/main/java/com/github/checkstyle/regression/package-info.java +++ b/src/main/java/com/github/checkstyle/regression/package-info.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/main/java/com/github/checkstyle/regression/report/ReportGenerator.java b/src/main/java/com/github/checkstyle/regression/report/ReportGenerator.java index 353c5fc..5f5d019 100644 --- a/src/main/java/com/github/checkstyle/regression/report/ReportGenerator.java +++ b/src/main/java/com/github/checkstyle/regression/report/ReportGenerator.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/main/java/com/github/checkstyle/regression/report/package-info.java b/src/main/java/com/github/checkstyle/regression/report/package-info.java index 030535d..a5daaf8 100644 --- a/src/main/java/com/github/checkstyle/regression/report/package-info.java +++ b/src/main/java/com/github/checkstyle/regression/report/package-info.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/main/resources/com/github/checkstyle/regression/extract/ExtractInfoGeneratorTest.java b/src/main/resources/com/github/checkstyle/regression/extract/ExtractInfoGeneratorTest.java index 0d518b3..4347787 100644 --- a/src/main/resources/com/github/checkstyle/regression/extract/ExtractInfoGeneratorTest.java +++ b/src/main/resources/com/github/checkstyle/regression/extract/ExtractInfoGeneratorTest.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/main/resources/com/github/checkstyle/regression/extract/JsonUtil.java b/src/main/resources/com/github/checkstyle/regression/extract/JsonUtil.java index e00a803..d05342e 100644 --- a/src/main/resources/com/github/checkstyle/regression/extract/JsonUtil.java +++ b/src/main/resources/com/github/checkstyle/regression/extract/JsonUtil.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/test/java/com/github/checkstyle/regression/MainTest.java b/src/test/java/com/github/checkstyle/regression/MainTest.java index 726dae5..f5fb382 100644 --- a/src/test/java/com/github/checkstyle/regression/MainTest.java +++ b/src/test/java/com/github/checkstyle/regression/MainTest.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/test/java/com/github/checkstyle/regression/configuration/ConfigGeneratorTest.java b/src/test/java/com/github/checkstyle/regression/configuration/ConfigGeneratorTest.java index 6510a91..6e3e0c6 100644 --- a/src/test/java/com/github/checkstyle/regression/configuration/ConfigGeneratorTest.java +++ b/src/test/java/com/github/checkstyle/regression/configuration/ConfigGeneratorTest.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/test/java/com/github/checkstyle/regression/extract/CheckstyleInjectorTest.java b/src/test/java/com/github/checkstyle/regression/extract/CheckstyleInjectorTest.java index 58023ee..83a029c 100644 --- a/src/test/java/com/github/checkstyle/regression/extract/CheckstyleInjectorTest.java +++ b/src/test/java/com/github/checkstyle/regression/extract/CheckstyleInjectorTest.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/test/java/com/github/checkstyle/regression/extract/ExtractInfoProcessorTest.java b/src/test/java/com/github/checkstyle/regression/extract/ExtractInfoProcessorTest.java index cc89a4c..7eceaeb 100644 --- a/src/test/java/com/github/checkstyle/regression/extract/ExtractInfoProcessorTest.java +++ b/src/test/java/com/github/checkstyle/regression/extract/ExtractInfoProcessorTest.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/test/java/com/github/checkstyle/regression/git/DiffParserTest.java b/src/test/java/com/github/checkstyle/regression/git/DiffParserTest.java index 2c2f3d1..d064b39 100644 --- a/src/test/java/com/github/checkstyle/regression/git/DiffParserTest.java +++ b/src/test/java/com/github/checkstyle/regression/git/DiffParserTest.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/test/java/com/github/checkstyle/regression/internal/CommitValidationTest.java b/src/test/java/com/github/checkstyle/regression/internal/CommitValidationTest.java index 4c4dadf..e6b4a34 100644 --- a/src/test/java/com/github/checkstyle/regression/internal/CommitValidationTest.java +++ b/src/test/java/com/github/checkstyle/regression/internal/CommitValidationTest.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/test/java/com/github/checkstyle/regression/internal/FileUtils.java b/src/test/java/com/github/checkstyle/regression/internal/FileUtils.java index f7e18e8..90976d5 100644 --- a/src/test/java/com/github/checkstyle/regression/internal/FileUtils.java +++ b/src/test/java/com/github/checkstyle/regression/internal/FileUtils.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/test/java/com/github/checkstyle/regression/internal/GitUtils.java b/src/test/java/com/github/checkstyle/regression/internal/GitUtils.java index 8957e46..14c2a10 100644 --- a/src/test/java/com/github/checkstyle/regression/internal/GitUtils.java +++ b/src/test/java/com/github/checkstyle/regression/internal/GitUtils.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/test/java/com/github/checkstyle/regression/internal/TestUtils.java b/src/test/java/com/github/checkstyle/regression/internal/TestUtils.java index de33a66..c18f952 100644 --- a/src/test/java/com/github/checkstyle/regression/internal/TestUtils.java +++ b/src/test/java/com/github/checkstyle/regression/internal/TestUtils.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/test/java/com/github/checkstyle/regression/module/ModuleInfoCollectorTest.java b/src/test/java/com/github/checkstyle/regression/module/ModuleInfoCollectorTest.java index 9f52923..73a93cd 100644 --- a/src/test/java/com/github/checkstyle/regression/module/ModuleInfoCollectorTest.java +++ b/src/test/java/com/github/checkstyle/regression/module/ModuleInfoCollectorTest.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/test/java/com/github/checkstyle/regression/module/ModuleUtilsTest.java b/src/test/java/com/github/checkstyle/regression/module/ModuleUtilsTest.java index d6805fd..032c4eb 100644 --- a/src/test/java/com/github/checkstyle/regression/module/ModuleUtilsTest.java +++ b/src/test/java/com/github/checkstyle/regression/module/ModuleUtilsTest.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public diff --git a/src/test/java/com/github/checkstyle/regression/report/ReportGeneratorTest.java b/src/test/java/com/github/checkstyle/regression/report/ReportGeneratorTest.java index 97fae24..25cde31 100644 --- a/src/test/java/com/github/checkstyle/regression/report/ReportGeneratorTest.java +++ b/src/test/java/com/github/checkstyle/regression/report/ReportGeneratorTest.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2021 the original author or authors. +// Copyright (C) 2001-2022 the original author or authors. // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public