Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
SethSmucker committed Oct 7, 2024
1 parent 78aee24 commit 80d3948
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -292,9 +292,7 @@ protected Future<ResponseEntity<String>> execute(DatawaveUserDetails authUser, S

private ObjectMapper createJSONObjectMapper() {
JsonMapper.Builder builder = JsonMapper.builder();
return builder.configure(MapperFeature.USE_WRAPPER_NAME_AS_PROPERTY_NAME, true)
.addModule(new JaxbAnnotationModule())
.build();
return builder.configure(MapperFeature.USE_WRAPPER_NAME_AS_PROPERTY_NAME, true).addModule(new JaxbAnnotationModule()).build();
}

protected List<DefaultEventQueryResponse> parseJSONBaseQueryResponses(String responseBody) throws JsonProcessingException {
Expand Down

0 comments on commit 80d3948

Please sign in to comment.