File tree 3 files changed +13
-2
lines changed
csv/src/main/java/com/fasterxml/jackson/dataformat/csv
3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 9
9
/**
10
10
* Simple {@link FormatSchema} sub-type that defines properties of
11
11
* 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>
12
15
* Properties supported currently are:
13
16
*<ul>
14
17
* <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) {
885
888
/**
886
889
* Bitflag for general-purpose on/off features.
887
890
*
888
- * @since 2.5
891
+ * @since 2.5 (final since 2.19)
889
892
*/
890
- protected int _features = DEFAULT_ENCODING_FEATURES ;
893
+ protected final int _features ;
891
894
892
895
protected final char _columnSeparator ;
893
896
Original file line number Diff line number Diff line change @@ -289,3 +289,9 @@ Robert DiFalco (@rdifalco)
289
289
290
290
* Reported #31 : Header names seem to be trimmed
291
291
(2.19.0 )
292
+
293
+ Gili Tzabari (@cowwoc)
294
+
295
+ * Requested #554 : (csv) Enforce, document thread-safety of `CsvSchema`
296
+ (2.19.0 )
297
+
Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ Active Maintainers:
25
25
(contributed by Joo-Hyuk K)
26
26
#537 : (yaml) Snakeyaml 2.4
27
27
(contributed by @pjfanning)
28
+ #554 : (csv) Enforce, document thread-safety of `CsvSchema`
29
+ (requested by Gili T)
28
30
29
31
2.18.3 (28 -Feb-2025 )
30
32
2.18.2 (27 -Nov-2024 )
You can’t perform that action at this time.
0 commit comments