We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 768e458 commit 4427116Copy full SHA for 4427116
src/main/java/com/fasterxml/jackson/core/JsonGenerator.java
@@ -109,7 +109,7 @@ public enum Feature {
109
QUOTE_NON_NUMERIC_NUMBERS(true),
110
111
// // Character escaping features
112
-
+
113
/**
114
* Feature that specifies that all characters beyond 7-bit ASCII
115
* range (i.e. code points of 128 and above) need to be output
@@ -127,11 +127,11 @@ public enum Feature {
127
*
128
* @deprecated Since 2.10 use {@link com.fasterxml.jackson.core.json.JsonWriteFeature#ESCAPE_NON_ASCII} instead
129
*/
130
- @Deprecated
+ @Deprecated
131
ESCAPE_NON_ASCII(false),
132
133
// // Datatype coercion features
134
135
136
* Feature that forces all Java numbers to be written as Strings,
137
* even if the underlying data format has non-textual representation
0 commit comments