From 3d26913507904af127bb57ef90af48f5505b1eb8 Mon Sep 17 00:00:00 2001 From: Roman Ivanov Date: Mon, 14 Jan 2019 13:42:10 -0800 Subject: [PATCH] minor: bump year to 2019 in headers --- .../src/main/java/com/github/checkstyle/CliArgsValidator.java | 2 +- .../src/main/java/com/github/checkstyle/FilesystemUtils.java | 2 +- .../src/main/java/com/github/checkstyle/Main.java | 2 +- .../main/java/com/github/checkstyle/data/CheckstyleRecord.java | 2 +- .../src/main/java/com/github/checkstyle/data/CliPaths.java | 2 +- .../src/main/java/com/github/checkstyle/data/CompareMode.java | 2 +- .../src/main/java/com/github/checkstyle/data/DiffReport.java | 2 +- .../com/github/checkstyle/data/MergedConfigurationModule.java | 2 +- .../src/main/java/com/github/checkstyle/data/Statistics.java | 2 +- .../src/main/java/com/github/checkstyle/data/package-info.java | 2 +- .../src/main/java/com/github/checkstyle/package-info.java | 2 +- .../checkstyle/parser/CheckstyleConfigurationsParser.java | 2 +- .../com/github/checkstyle/parser/CheckstyleReportsParser.java | 2 +- .../java/com/github/checkstyle/parser/CheckstyleTextParser.java | 2 +- .../java/com/github/checkstyle/parser/ConfigurationMerger.java | 2 +- .../java/com/github/checkstyle/parser/ConfigurationModule.java | 2 +- .../java/com/github/checkstyle/parser/EmptyXmlEventReader.java | 2 +- .../src/main/java/com/github/checkstyle/parser/JgitUtils.java | 2 +- .../src/main/java/com/github/checkstyle/parser/StaxUtils.java | 2 +- .../main/java/com/github/checkstyle/parser/package-info.java | 2 +- .../src/main/java/com/github/checkstyle/site/AnchorCounter.java | 2 +- .../src/main/java/com/github/checkstyle/site/JxrDummyLog.java | 2 +- .../src/main/java/com/github/checkstyle/site/SiteGenerator.java | 2 +- .../src/main/java/com/github/checkstyle/site/TextTransform.java | 2 +- .../src/main/java/com/github/checkstyle/site/XrefGenerator.java | 2 +- .../src/main/java/com/github/checkstyle/site/package-info.java | 2 +- .../test/java/com/github/checkstyle/CliArgsValidatorTest.java | 2 +- .../test/java/com/github/checkstyle/FileSystemUtilsTest.java | 2 +- .../src/test/java/com/github/checkstyle/MainTest.java | 2 +- .../test/java/com/github/checkstyle/internal/AbstractTest.java | 2 +- .../checkstyle/parser/CheckstyleConfigurationsParserTest.java | 2 +- .../github/checkstyle/parser/CheckstyleReportsParserTest.java | 2 +- .../com/github/checkstyle/parser/CheckstyleTextParserTest.java | 2 +- .../com/github/checkstyle/parser/ConfigurationMergerTest.java | 2 +- .../test/java/com/github/checkstyle/parser/JgitUtilsTest.java | 2 +- .../test/java/com/github/checkstyle/parser/StaxUtilsTest.java | 2 +- .../test/java/com/github/checkstyle/site/SiteGeneratorTest.java | 2 +- .../src/main/java/com/github/checkstyle/CliOptions.java | 2 +- .../src/main/java/com/github/checkstyle/CliProcessor.java | 2 +- .../src/main/java/com/github/checkstyle/Main.java | 2 +- .../src/main/java/com/github/checkstyle/MainProcess.java | 2 +- .../main/java/com/github/checkstyle/github/NotesBuilder.java | 2 +- .../main/java/com/github/checkstyle/github/package-info.java | 2 +- .../src/main/java/com/github/checkstyle/globals/Constants.java | 2 +- .../java/com/github/checkstyle/globals/ReleaseNotesMessage.java | 2 +- .../src/main/java/com/github/checkstyle/globals/Result.java | 2 +- .../main/java/com/github/checkstyle/globals/package-info.java | 2 +- .../src/main/java/com/github/checkstyle/package-info.java | 2 +- .../com/github/checkstyle/publishers/MailingListPublisher.java | 2 +- .../github/checkstyle/publishers/SourceforgeRssPublisher.java | 2 +- .../java/com/github/checkstyle/publishers/TwitterPublisher.java | 2 +- .../java/com/github/checkstyle/publishers/XdocPublisher.java | 2 +- .../java/com/github/checkstyle/publishers/package-info.java | 2 +- .../java/com/github/checkstyle/templates/TemplateProcessor.java | 2 +- .../main/java/com/github/checkstyle/templates/package-info.java | 2 +- .../com/github/checkstyle/templates/TemplateProcessorTest.java | 2 +- 56 files changed, 56 insertions(+), 56 deletions(-) diff --git a/patch-diff-report-tool/src/main/java/com/github/checkstyle/CliArgsValidator.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/CliArgsValidator.java index 1c0af685..c2d21a1f 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/CliArgsValidator.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/CliArgsValidator.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/FilesystemUtils.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/FilesystemUtils.java index 95f1916d..a3c177f3 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/FilesystemUtils.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/FilesystemUtils.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/Main.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/Main.java index 15dca6db..1142aaae 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/Main.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/Main.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/CheckstyleRecord.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/CheckstyleRecord.java index d3a863be..c98cf91b 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/CheckstyleRecord.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/CheckstyleRecord.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/CliPaths.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/CliPaths.java index b2cb4991..221d787a 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/CliPaths.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/CliPaths.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/CompareMode.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/CompareMode.java index 298a39ac..bc33ce3f 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/CompareMode.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/CompareMode.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/DiffReport.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/DiffReport.java index 53bb6d80..c95277ff 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/DiffReport.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/DiffReport.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/MergedConfigurationModule.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/MergedConfigurationModule.java index 4183a868..b73b716c 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/MergedConfigurationModule.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/MergedConfigurationModule.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/Statistics.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/Statistics.java index 00474138..755b17ea 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/Statistics.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/Statistics.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/package-info.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/package-info.java index 59f36a02..644e750d 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/package-info.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/data/package-info.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/package-info.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/package-info.java index 6abd93a8..1a6cc6c9 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/package-info.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/package-info.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/CheckstyleConfigurationsParser.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/CheckstyleConfigurationsParser.java index 26445e3d..e40c8adb 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/CheckstyleConfigurationsParser.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/CheckstyleConfigurationsParser.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/CheckstyleReportsParser.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/CheckstyleReportsParser.java index fab8eadf..eb3a3849 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/CheckstyleReportsParser.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/CheckstyleReportsParser.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/CheckstyleTextParser.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/CheckstyleTextParser.java index 4a27a26a..432ee051 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/CheckstyleTextParser.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/CheckstyleTextParser.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/ConfigurationMerger.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/ConfigurationMerger.java index 6824f83e..5d0ba0d8 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/ConfigurationMerger.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/ConfigurationMerger.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/ConfigurationModule.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/ConfigurationModule.java index 5c223d19..ad31f796 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/ConfigurationModule.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/ConfigurationModule.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/EmptyXmlEventReader.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/EmptyXmlEventReader.java index 6dad1553..30026d9b 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/EmptyXmlEventReader.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/EmptyXmlEventReader.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/JgitUtils.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/JgitUtils.java index a6df43e9..1686f258 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/JgitUtils.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/JgitUtils.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/StaxUtils.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/StaxUtils.java index 37f899ab..b418f264 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/StaxUtils.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/StaxUtils.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/package-info.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/package-info.java index d134869a..0af449c3 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/package-info.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/parser/package-info.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/AnchorCounter.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/AnchorCounter.java index 67688888..f6d4272a 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/AnchorCounter.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/AnchorCounter.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/JxrDummyLog.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/JxrDummyLog.java index 95ae1db6..4b64649c 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/JxrDummyLog.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/JxrDummyLog.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/SiteGenerator.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/SiteGenerator.java index 56bf1dfb..e2c1ff17 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/SiteGenerator.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/SiteGenerator.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/TextTransform.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/TextTransform.java index 305c848d..ed52e4d3 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/TextTransform.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/TextTransform.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/XrefGenerator.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/XrefGenerator.java index 4b5a42bb..62b77434 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/XrefGenerator.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/XrefGenerator.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/package-info.java b/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/package-info.java index bc3e1042..a7892f95 100644 --- a/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/package-info.java +++ b/patch-diff-report-tool/src/main/java/com/github/checkstyle/site/package-info.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/test/java/com/github/checkstyle/CliArgsValidatorTest.java b/patch-diff-report-tool/src/test/java/com/github/checkstyle/CliArgsValidatorTest.java index 1054dbbd..0703ee8e 100644 --- a/patch-diff-report-tool/src/test/java/com/github/checkstyle/CliArgsValidatorTest.java +++ b/patch-diff-report-tool/src/test/java/com/github/checkstyle/CliArgsValidatorTest.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/test/java/com/github/checkstyle/FileSystemUtilsTest.java b/patch-diff-report-tool/src/test/java/com/github/checkstyle/FileSystemUtilsTest.java index c8de3980..78708114 100644 --- a/patch-diff-report-tool/src/test/java/com/github/checkstyle/FileSystemUtilsTest.java +++ b/patch-diff-report-tool/src/test/java/com/github/checkstyle/FileSystemUtilsTest.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/test/java/com/github/checkstyle/MainTest.java b/patch-diff-report-tool/src/test/java/com/github/checkstyle/MainTest.java index 31355ef5..7028e405 100644 --- a/patch-diff-report-tool/src/test/java/com/github/checkstyle/MainTest.java +++ b/patch-diff-report-tool/src/test/java/com/github/checkstyle/MainTest.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/test/java/com/github/checkstyle/internal/AbstractTest.java b/patch-diff-report-tool/src/test/java/com/github/checkstyle/internal/AbstractTest.java index b51e470b..26750364 100644 --- a/patch-diff-report-tool/src/test/java/com/github/checkstyle/internal/AbstractTest.java +++ b/patch-diff-report-tool/src/test/java/com/github/checkstyle/internal/AbstractTest.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/CheckstyleConfigurationsParserTest.java b/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/CheckstyleConfigurationsParserTest.java index 7f74a6a6..30ff9423 100644 --- a/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/CheckstyleConfigurationsParserTest.java +++ b/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/CheckstyleConfigurationsParserTest.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/CheckstyleReportsParserTest.java b/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/CheckstyleReportsParserTest.java index f52299df..91eb2f38 100644 --- a/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/CheckstyleReportsParserTest.java +++ b/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/CheckstyleReportsParserTest.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/CheckstyleTextParserTest.java b/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/CheckstyleTextParserTest.java index 8571f00b..75bd1a56 100644 --- a/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/CheckstyleTextParserTest.java +++ b/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/CheckstyleTextParserTest.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/ConfigurationMergerTest.java b/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/ConfigurationMergerTest.java index 3798f6c6..3960af39 100644 --- a/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/ConfigurationMergerTest.java +++ b/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/ConfigurationMergerTest.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/JgitUtilsTest.java b/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/JgitUtilsTest.java index 976cc500..dbf1a265 100644 --- a/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/JgitUtilsTest.java +++ b/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/JgitUtilsTest.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/StaxUtilsTest.java b/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/StaxUtilsTest.java index e3a96f5f..2c3a48a6 100644 --- a/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/StaxUtilsTest.java +++ b/patch-diff-report-tool/src/test/java/com/github/checkstyle/parser/StaxUtilsTest.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/patch-diff-report-tool/src/test/java/com/github/checkstyle/site/SiteGeneratorTest.java b/patch-diff-report-tool/src/test/java/com/github/checkstyle/site/SiteGeneratorTest.java index b0297f7f..9b38da11 100644 --- a/patch-diff-report-tool/src/test/java/com/github/checkstyle/site/SiteGeneratorTest.java +++ b/patch-diff-report-tool/src/test/java/com/github/checkstyle/site/SiteGeneratorTest.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/releasenotes-builder/src/main/java/com/github/checkstyle/CliOptions.java b/releasenotes-builder/src/main/java/com/github/checkstyle/CliOptions.java index 5f885fd3..771170ad 100644 --- a/releasenotes-builder/src/main/java/com/github/checkstyle/CliOptions.java +++ b/releasenotes-builder/src/main/java/com/github/checkstyle/CliOptions.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/releasenotes-builder/src/main/java/com/github/checkstyle/CliProcessor.java b/releasenotes-builder/src/main/java/com/github/checkstyle/CliProcessor.java index d5d5883c..ffbaaee8 100644 --- a/releasenotes-builder/src/main/java/com/github/checkstyle/CliProcessor.java +++ b/releasenotes-builder/src/main/java/com/github/checkstyle/CliProcessor.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/releasenotes-builder/src/main/java/com/github/checkstyle/Main.java b/releasenotes-builder/src/main/java/com/github/checkstyle/Main.java index d5185fc0..064fa7be 100644 --- a/releasenotes-builder/src/main/java/com/github/checkstyle/Main.java +++ b/releasenotes-builder/src/main/java/com/github/checkstyle/Main.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/releasenotes-builder/src/main/java/com/github/checkstyle/MainProcess.java b/releasenotes-builder/src/main/java/com/github/checkstyle/MainProcess.java index 5066f4e6..488a4d47 100644 --- a/releasenotes-builder/src/main/java/com/github/checkstyle/MainProcess.java +++ b/releasenotes-builder/src/main/java/com/github/checkstyle/MainProcess.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/releasenotes-builder/src/main/java/com/github/checkstyle/github/NotesBuilder.java b/releasenotes-builder/src/main/java/com/github/checkstyle/github/NotesBuilder.java index 55737cfb..86e2c73c 100644 --- a/releasenotes-builder/src/main/java/com/github/checkstyle/github/NotesBuilder.java +++ b/releasenotes-builder/src/main/java/com/github/checkstyle/github/NotesBuilder.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/releasenotes-builder/src/main/java/com/github/checkstyle/github/package-info.java b/releasenotes-builder/src/main/java/com/github/checkstyle/github/package-info.java index 5b593241..1d7bf59c 100644 --- a/releasenotes-builder/src/main/java/com/github/checkstyle/github/package-info.java +++ b/releasenotes-builder/src/main/java/com/github/checkstyle/github/package-info.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/releasenotes-builder/src/main/java/com/github/checkstyle/globals/Constants.java b/releasenotes-builder/src/main/java/com/github/checkstyle/globals/Constants.java index aebe374a..8d597316 100644 --- a/releasenotes-builder/src/main/java/com/github/checkstyle/globals/Constants.java +++ b/releasenotes-builder/src/main/java/com/github/checkstyle/globals/Constants.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/releasenotes-builder/src/main/java/com/github/checkstyle/globals/ReleaseNotesMessage.java b/releasenotes-builder/src/main/java/com/github/checkstyle/globals/ReleaseNotesMessage.java index 782a3ebf..b087cb37 100644 --- a/releasenotes-builder/src/main/java/com/github/checkstyle/globals/ReleaseNotesMessage.java +++ b/releasenotes-builder/src/main/java/com/github/checkstyle/globals/ReleaseNotesMessage.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/releasenotes-builder/src/main/java/com/github/checkstyle/globals/Result.java b/releasenotes-builder/src/main/java/com/github/checkstyle/globals/Result.java index 5e8c5d50..53f747c8 100644 --- a/releasenotes-builder/src/main/java/com/github/checkstyle/globals/Result.java +++ b/releasenotes-builder/src/main/java/com/github/checkstyle/globals/Result.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/releasenotes-builder/src/main/java/com/github/checkstyle/globals/package-info.java b/releasenotes-builder/src/main/java/com/github/checkstyle/globals/package-info.java index cb5ce5e3..8919abf1 100644 --- a/releasenotes-builder/src/main/java/com/github/checkstyle/globals/package-info.java +++ b/releasenotes-builder/src/main/java/com/github/checkstyle/globals/package-info.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/releasenotes-builder/src/main/java/com/github/checkstyle/package-info.java b/releasenotes-builder/src/main/java/com/github/checkstyle/package-info.java index 2a978934..16602336 100644 --- a/releasenotes-builder/src/main/java/com/github/checkstyle/package-info.java +++ b/releasenotes-builder/src/main/java/com/github/checkstyle/package-info.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/releasenotes-builder/src/main/java/com/github/checkstyle/publishers/MailingListPublisher.java b/releasenotes-builder/src/main/java/com/github/checkstyle/publishers/MailingListPublisher.java index fcf14c45..4ad024fb 100644 --- a/releasenotes-builder/src/main/java/com/github/checkstyle/publishers/MailingListPublisher.java +++ b/releasenotes-builder/src/main/java/com/github/checkstyle/publishers/MailingListPublisher.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/releasenotes-builder/src/main/java/com/github/checkstyle/publishers/SourceforgeRssPublisher.java b/releasenotes-builder/src/main/java/com/github/checkstyle/publishers/SourceforgeRssPublisher.java index 5eb870c4..04b7c295 100644 --- a/releasenotes-builder/src/main/java/com/github/checkstyle/publishers/SourceforgeRssPublisher.java +++ b/releasenotes-builder/src/main/java/com/github/checkstyle/publishers/SourceforgeRssPublisher.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/releasenotes-builder/src/main/java/com/github/checkstyle/publishers/TwitterPublisher.java b/releasenotes-builder/src/main/java/com/github/checkstyle/publishers/TwitterPublisher.java index 27e96692..d1ed124d 100644 --- a/releasenotes-builder/src/main/java/com/github/checkstyle/publishers/TwitterPublisher.java +++ b/releasenotes-builder/src/main/java/com/github/checkstyle/publishers/TwitterPublisher.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/releasenotes-builder/src/main/java/com/github/checkstyle/publishers/XdocPublisher.java b/releasenotes-builder/src/main/java/com/github/checkstyle/publishers/XdocPublisher.java index dadc97aa..ee9d88a1 100644 --- a/releasenotes-builder/src/main/java/com/github/checkstyle/publishers/XdocPublisher.java +++ b/releasenotes-builder/src/main/java/com/github/checkstyle/publishers/XdocPublisher.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/releasenotes-builder/src/main/java/com/github/checkstyle/publishers/package-info.java b/releasenotes-builder/src/main/java/com/github/checkstyle/publishers/package-info.java index 71d63822..7f93c7a4 100644 --- a/releasenotes-builder/src/main/java/com/github/checkstyle/publishers/package-info.java +++ b/releasenotes-builder/src/main/java/com/github/checkstyle/publishers/package-info.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/releasenotes-builder/src/main/java/com/github/checkstyle/templates/TemplateProcessor.java b/releasenotes-builder/src/main/java/com/github/checkstyle/templates/TemplateProcessor.java index ecae8e64..cac0c6c1 100644 --- a/releasenotes-builder/src/main/java/com/github/checkstyle/templates/TemplateProcessor.java +++ b/releasenotes-builder/src/main/java/com/github/checkstyle/templates/TemplateProcessor.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/releasenotes-builder/src/main/java/com/github/checkstyle/templates/package-info.java b/releasenotes-builder/src/main/java/com/github/checkstyle/templates/package-info.java index bbb0d5b1..0059931a 100644 --- a/releasenotes-builder/src/main/java/com/github/checkstyle/templates/package-info.java +++ b/releasenotes-builder/src/main/java/com/github/checkstyle/templates/package-info.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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/releasenotes-builder/src/test/java/com/github/checkstyle/templates/TemplateProcessorTest.java b/releasenotes-builder/src/test/java/com/github/checkstyle/templates/TemplateProcessorTest.java index 54f57d51..646b73dd 100644 --- a/releasenotes-builder/src/test/java/com/github/checkstyle/templates/TemplateProcessorTest.java +++ b/releasenotes-builder/src/test/java/com/github/checkstyle/templates/TemplateProcessorTest.java @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// // checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2018 the original author or authors. +// Copyright (C) 2001-2019 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