diff options
author | 2023-06-19 13:14:48 +0200 | |
---|---|---|
committer | 2023-06-19 13:14:48 +0200 | |
commit | bb61c9827eee6f5556b972e2846d392de1adc439 (patch) | |
tree | aa865ce6fad3526901693b6eb0702342134efb89 | |
parent | aa3ff0210988d17f62dde7d19da44be159bac4cd (diff) | |
download | csv-utils-bb61c9827eee6f5556b972e2846d392de1adc439.tar.gz csv-utils-bb61c9827eee6f5556b972e2846d392de1adc439.zip |
Update copyright
-rw-r--r-- | src/main/java/it/alessandroiezzi/csv/CSVParser.java | 2 | ||||
-rw-r--r-- | src/test/java/it/alessandroiezzi/csv/AppTest.java | 19 |
2 files changed, 20 insertions, 1 deletions
diff --git a/src/main/java/it/alessandroiezzi/csv/CSVParser.java b/src/main/java/it/alessandroiezzi/csv/CSVParser.java index 45fd050..6ede144 100644 --- a/src/main/java/it/alessandroiezzi/csv/CSVParser.java +++ b/src/main/java/it/alessandroiezzi/csv/CSVParser.java @@ -14,7 +14,7 @@ * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with csv-utils. If not, see <https://www.gnu.org/licenses/>. + * along with csv-utils. If not, see <https://www.gnu.org/licenses/>. */ package it.alessandroiezzi.csv; diff --git a/src/test/java/it/alessandroiezzi/csv/AppTest.java b/src/test/java/it/alessandroiezzi/csv/AppTest.java index a18763e..337f5c8 100644 --- a/src/test/java/it/alessandroiezzi/csv/AppTest.java +++ b/src/test/java/it/alessandroiezzi/csv/AppTest.java @@ -1,3 +1,22 @@ +/* + * Simple and faster CSV parser/writer library. + * + * Copyright (C) 2022-2023 Alessandro Iezzi <aiezzi AT alessandroiezzi PERIOD it> + * + * csv-utils is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * csv-utils is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with csv-utils. If not, see <https://www.gnu.org/licenses/>. + */ + package it.alessandroiezzi.csv; import static org.junit.Assert.assertTrue; |