Skip to content

Commit

Permalink
feat(impl):[#359] fix pmd
Browse files Browse the repository at this point in the history
  • Loading branch information
ds-ext-kmassalski committed Mar 22, 2024
1 parent ff53d66 commit f67923c
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ public class DecentralDigitalTwinRegistryClient {

private static final ObjectWriter WRITER;
static {
final ObjectMapper MAPPER = new ObjectMapper();
MAPPER.enable(SerializationFeature.INDENT_OUTPUT);
MAPPER.setSerializationInclusion(JsonInclude.Include.NON_NULL);
WRITER = MAPPER.writer();
final ObjectMapper mapper = new ObjectMapper();
mapper.enable(SerializationFeature.INDENT_OUTPUT);
mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
WRITER = mapper.writer();
}

private final RestTemplate edcRestTemplate;
Expand Down

0 comments on commit f67923c

Please sign in to comment.