This repository was archived by the owner on Jan 22, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
src/main/java/com/fasterxml/jackson/dataformat/csv Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,6 @@ Oliver Röss (cloudyday@github)
56
56
* Reported #98: Escape char is not being escaped during serialization
57
57
(2.6.4)
58
58
59
- <<<<<<< HEAD
60
59
Justo Ruiz Ferrer (jrferrer@github)
61
60
62
61
* Contributed #89: Allow choice of using header-line declaration to reorder columns
@@ -84,3 +83,8 @@ Brian Moriarty (morbrian@github)
84
83
85
84
* Contributed #106: Null fields are always ignored when serializing list of objects
86
85
(2.7.0)
86
+
87
+ Peter Ansell (ansell@github)
88
+
89
+ * Contributed fix for #128: Write out headers even if no data rows written
90
+ (2.7.7)
Original file line number Diff line number Diff line change @@ -19,6 +19,11 @@ No changes since 2.8.0.
19
19
20
20
- Removed unused `CsvEncoding` class.
21
21
22
+ 2.7.7 (not yet released)
23
+
24
+ #128: Write out headers even if no data rows written
25
+ (contributed by Peter A)
26
+
22
27
2.7.6 (23-Jul-2016)
23
28
2.7.5 (11-Jun-2016)
24
29
Original file line number Diff line number Diff line change @@ -433,7 +433,6 @@ public void close() throws IOException
433
433
if (_handleFirstLine ) {
434
434
_handleFirstLine ();
435
435
}
436
-
437
436
_writer .close (_ioContext .isResourceManaged () || isEnabled (JsonGenerator .Feature .AUTO_CLOSE_TARGET ));
438
437
}
439
438
You can’t perform that action at this time.
0 commit comments