Skip to content

Commit b1391d3

Browse files
committed
...
1 parent a954787 commit b1391d3

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/main/java/com/fasterxml/jackson/core/json/UTF8JsonGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public class UTF8JsonGenerator
5252
*
5353
* @since 2.8
5454
*/
55-
protected byte _quoteChar = '"'; // TODO: make configurable
55+
protected byte _quoteChar;
5656

5757
/*
5858
/**********************************************************

src/main/java/com/fasterxml/jackson/core/json/WriterBasedJsonGenerator.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,8 @@ public class WriterBasedJsonGenerator
3232
/**
3333
* Character used for quoting JSON Object property names
3434
* and String values.
35-
*
36-
* @since 2.8
3735
*/
38-
protected char _quoteChar = '"'; // TODO: make configurable
36+
protected char _quoteChar;
3937

4038
/*
4139
/**********************************************************

0 commit comments

Comments
 (0)