summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/it/alessandroiezzi/csv/CSVBuilder.java19
-rw-r--r--src/main/java/it/alessandroiezzi/csv/CSVParser.java19
2 files changed, 36 insertions, 2 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;