This is an automated email from the ASF dual-hosted git repository.
hansva pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hop.git
The following commit(s) were added to refs/heads/main by this push:
new 4aca30bf17 reset global setting json formatting that waas accidentally
set, #5769 (#5802)
4aca30bf17 is described below
commit 4aca30bf17a44666e970166d32b4ecce47b5ca9d
Author: Hans Van Akelyen <[email protected]>
AuthorDate: Thu Oct 9 12:52:41 2025 +0200
reset global setting json formatting that waas accidentally set, #5769
(#5802)
---
core/src/main/java/org/apache/hop/core/json/HopJson.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/src/main/java/org/apache/hop/core/json/HopJson.java
b/core/src/main/java/org/apache/hop/core/json/HopJson.java
index bce33b6f95..dfaf933e69 100644
--- a/core/src/main/java/org/apache/hop/core/json/HopJson.java
+++ b/core/src/main/java/org/apache/hop/core/json/HopJson.java
@@ -30,7 +30,7 @@ public class HopJson {
public static final ObjectMapper newMapper() {
ObjectMapper objectMapper = new ObjectMapper();
objectMapper.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);
- objectMapper.enable(SerializationFeature.INDENT_OUTPUT);
+ objectMapper.disable(SerializationFeature.INDENT_OUTPUT);
return objectMapper;
}
}