public static void toJSON()

in paimon-web-server/src/main/java/org/apache/paimon/web/server/util/ObjectMapperUtils.java [95:104]


    public static void toJSON(@Nullable Object obj, OutputStream writer) {
        if (obj == null) {
            return;
        }
        try {
            MAPPER.writeValue(writer, obj);
        } catch (IOException e) {
            throw wrapException(e);
        }
    }