public static T inputStreamToObject()

in src/main/java/com/epam/eco/commons/json/JsonMapper.java [105:111]


    public static <T> T inputStreamToObject(InputStream inputStream, Class<T> type) {
        try {
            return MAPPER.reader().forType(type).readValue(inputStream);
        } catch (IOException ioe) {
            throw new RuntimeException(ioe);
        }
    }