We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75cfd19 commit 6ca9ad6Copy full SHA for 6ca9ad6
spring-cloud-function-context/src/main/java/org/springframework/cloud/function/utils/JsonMasker.java
@@ -29,7 +29,6 @@
29
import java.util.TreeSet;
30
31
import com.fasterxml.jackson.databind.ObjectMapper;
32
-import com.fasterxml.jackson.databind.SerializationFeature;
33
import org.apache.commons.logging.Log;
34
import org.apache.commons.logging.LogFactory;
35
@@ -53,7 +52,7 @@ public final class JsonMasker {
53
52
54
private JsonMasker() {
55
this.keysToMask = loadKeys();
56
- this.mapper = new JacksonMapper(new ObjectMapper().enable(SerializationFeature.INDENT_OUTPUT));
+ this.mapper = new JacksonMapper(new ObjectMapper());
57
58
}
59
0 commit comments