Skip to content

Commit c4b336d

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 1cb4867 commit c4b336d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

libs/x-content/impl/src/main/java/org/elasticsearch/xcontent/provider/json/JsonXContentImpl.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
import com.fasterxml.jackson.core.JsonFactory;
1414
import com.fasterxml.jackson.core.JsonGenerator;
1515
import com.fasterxml.jackson.core.JsonParser;
16-
1716
import com.fasterxml.jackson.core.json.JsonWriteFeature;
1817

1918
import org.elasticsearch.xcontent.XContent;
@@ -50,9 +49,7 @@ public static final XContent jsonXContent() {
5049
}
5150

5251
static {
53-
jsonFactory = XContentImplUtils.configure(
54-
new ESJsonFactoryBuilder().enable(JsonWriteFeature.COMBINE_UNICODE_SURROGATES_IN_UTF8)
55-
);
52+
jsonFactory = XContentImplUtils.configure(new ESJsonFactoryBuilder().enable(JsonWriteFeature.COMBINE_UNICODE_SURROGATES_IN_UTF8));
5653
jsonFactory.configure(JsonGenerator.Feature.QUOTE_FIELD_NAMES, true);
5754
jsonFactory.configure(JsonParser.Feature.ALLOW_COMMENTS, true);
5855
jsonFactory.configure(JsonFactory.Feature.FAIL_ON_SYMBOL_HASH_OVERFLOW, false); // this trips on many mappings now...

0 commit comments

Comments
 (0)