public T fromJsonUnchecked()

in src/main/java/com/spotify/github/jackson/Json.java [186:192]


  public <T> T fromJsonUnchecked(final String content, final TypeReference<T> typeReference) {
    try {
      return mapper.readValue(content, typeReference);
    } catch (IOException e) {
      throw new RuntimeException(e);
    }
  }