public static T readerToObject()

in src/main/java/com/epam/eco/commons/json/JsonMapper.java [118:124]


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