Morssssy commented on code in PR #5460:
URL: https://github.com/apache/seatunnel/pull/5460#discussion_r1325432737
##########
seatunnel-common/src/main/java/org/apache/seatunnel/common/utils/JsonUtils.java:
##########
@@ -59,6 +59,8 @@ public class JsonUtils {
.configure(REQUIRE_SETTERS_FOR_GETTERS, true)
.setTimeZone(TimeZone.getDefault());
+ private static final ObjectMapper DEFAULT_OBJECT_MAPPER = new
ObjectMapper();
Review Comment:
Of course, it might be possible to use `OBJECT_MAPPER`. I found that
`OBJECT_MAPPER` uses some different configurations than the default. Without
knowing the intent of these configurations, it's safer for me to use the
default `OBJECT_MAPPER` here.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]