public static String toPrettyJson()

in src/main/java/com/epam/eco/commons/json/JsonMapper.java [68:74]


    public static String toPrettyJson(Object value) {
        try {
            return MAPPER.writerWithDefaultPrettyPrinter().writeValueAsString(value);
        } catch (IOException ioe) {
            throw new RuntimeException(ioe);
        }
    }