Skip to content

Commit

Permalink
Apply spotless suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
felixbarny committed Dec 6, 2023
1 parent 1f44c30 commit 94f25f5
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
Expand Down Expand Up @@ -114,7 +114,8 @@ private DocumentParserContext(
ObjectMapper.Dynamic dynamic,
Set<String> fieldsAppliedFromTemplates,
Set<String> copyToFields,
AtomicInteger dynamicMapperSize) {
AtomicInteger dynamicMapperSize
) {
this.mappingLookup = mappingLookup;
this.mappingParserContext = mappingParserContext;
this.sourceToParse = sourceToParse;
Expand Down Expand Up @@ -150,7 +151,8 @@ private DocumentParserContext(ObjectMapper parent, ObjectMapper.Dynamic dynamic,
dynamic,
in.fieldsAppliedFromTemplates,
in.copyToFields,
in.dynamicMappersSize);
in.dynamicMappersSize
);
}

protected DocumentParserContext(
Expand All @@ -176,7 +178,8 @@ protected DocumentParserContext(
dynamic,
new HashSet<>(),
new HashSet<>(),
new AtomicInteger(0));
new AtomicInteger(0)
);
}

public final IndexSettings indexSettings() {
Expand Down

0 comments on commit 94f25f5

Please sign in to comment.