summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlessandro Iezzi <aiezzi@alessandroiezzi.it>2023-06-15 18:37:27 +0200
committerAlessandro Iezzi <aiezzi@alessandroiezzi.it>2023-06-15 18:37:27 +0200
commitea052d995dbc68cb2fefc037b82307833ac67f0c (patch)
tree97baf19c5f0821b2094e161fd9860f121ed77dad /src
parent34656d45a3daa76405c8a978a9140749abb75446 (diff)
downloadcsv-utils-ea052d995dbc68cb2fefc037b82307833ac67f0c.tar.gz
csv-utils-ea052d995dbc68cb2fefc037b82307833ac67f0c.zip
Come back to the LGPLv3 license
Diffstat (limited to 'src')
-rw-r--r--src/main/java/it/alessandroiezzi/csv/CSVBuilder.java19
-rw-r--r--src/main/java/it/alessandroiezzi/csv/CSVParser.java19
-rw-r--r--src/test/java/it/alessandroiezzi/csv/CSVParserTest.java19
3 files changed, 54 insertions, 3 deletions
diff --git a/src/main/java/it/alessandroiezzi/csv/CSVBuilder.java b/src/main/java/it/alessandroiezzi/csv/CSVBuilder.java
index c81fcb8..5111363 100644
--- a/src/main/java/it/alessandroiezzi/csv/CSVBuilder.java
+++ b/src/main/java/it/alessandroiezzi/csv/CSVBuilder.java
@@ -1,4 +1,21 @@
-/* See LICENSE file for copyright and license details. */
+/*
+ * 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;
diff --git a/src/main/java/it/alessandroiezzi/csv/CSVParser.java b/src/main/java/it/alessandroiezzi/csv/CSVParser.java
index eeb0ad9..f89b38b 100644
--- a/src/main/java/it/alessandroiezzi/csv/CSVParser.java
+++ b/src/main/java/it/alessandroiezzi/csv/CSVParser.java
@@ -1,4 +1,21 @@
-/* See LICENSE file for copyright and license details. */
+/*
+ * 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;
diff --git a/src/test/java/it/alessandroiezzi/csv/CSVParserTest.java b/src/test/java/it/alessandroiezzi/csv/CSVParserTest.java
index 241a8bd..c952ff2 100644
--- a/src/test/java/it/alessandroiezzi/csv/CSVParserTest.java
+++ b/src/test/java/it/alessandroiezzi/csv/CSVParserTest.java
@@ -1,4 +1,21 @@
-/* See LICENSE file for copyright and license details. */
+/*
+ * 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;