Skip to content

Commit a6e1a29

Browse files
authored
Fix #554: enforce/document immutability of CsvSchema (#555)
1 parent de19091 commit a6e1a29

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

csv/src/main/java/com/fasterxml/jackson/dataformat/csv/CsvSchema.java

+5-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
/**
1010
* Simple {@link FormatSchema} sub-type that defines properties of
1111
* a CSV document to read or write.
12+
* Instances are thread-safe and immutable (explicitly immutable since 2.19,
13+
* but thread-safe since 2.0).
14+
* <p>
1215
* Properties supported currently are:
1316
*<ul>
1417
* <li>{@code columns} (List of ColumnDef) [default: empty List]: Ordered list of columns (which may be empty, see below).
@@ -885,9 +888,9 @@ protected void _checkIndex(int index) {
885888
/**
886889
* Bitflag for general-purpose on/off features.
887890
*
888-
* @since 2.5
891+
* @since 2.5 (final since 2.19)
889892
*/
890-
protected int _features = DEFAULT_ENCODING_FEATURES;
893+
protected final int _features;
891894

892895
protected final char _columnSeparator;
893896

release-notes/CREDITS-2.x

+6
Original file line numberDiff line numberDiff line change
@@ -289,3 +289,9 @@ Robert DiFalco (@rdifalco)
289289

290290
* Reported #31: Header names seem to be trimmed
291291
(2.19.0)
292+
293+
Gili Tzabari (@cowwoc)
294+
295+
* Requested #554: (csv) Enforce, document thread-safety of `CsvSchema`
296+
(2.19.0)
297+

release-notes/VERSION-2.x

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ Active Maintainers:
2525
(contributed by Joo-Hyuk K)
2626
#537: (yaml) Snakeyaml 2.4
2727
(contributed by @pjfanning)
28+
#554: (csv) Enforce, document thread-safety of `CsvSchema`
29+
(requested by Gili T)
2830

2931
2.18.3 (28-Feb-2025)
3032
2.18.2 (27-Nov-2024)

0 commit comments

Comments
 (0)