We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a954787 commit b1391d3Copy full SHA for b1391d3
src/main/java/com/fasterxml/jackson/core/json/UTF8JsonGenerator.java
@@ -52,7 +52,7 @@ public class UTF8JsonGenerator
52
*
53
* @since 2.8
54
*/
55
- protected byte _quoteChar = '"'; // TODO: make configurable
+ protected byte _quoteChar;
56
57
/*
58
/**********************************************************
src/main/java/com/fasterxml/jackson/core/json/WriterBasedJsonGenerator.java
@@ -32,10 +32,8 @@ public class WriterBasedJsonGenerator
32
/**
33
* Character used for quoting JSON Object property names
34
* and String values.
35
- *
36
- * @since 2.8
37
38
- protected char _quoteChar = '"'; // TODO: make configurable
+ protected char _quoteChar;
39
40
41
0 commit comments