private static String decodeSilently()

in src/main/java/software/amazon/msk/auth/iam/internals/utils/URIUtils.java [43:49]


  private static String decodeSilently(String s) {
    try {
      return URLDecoder.decode(s, StandardCharsets.UTF_8.name());
    } catch (UnsupportedEncodingException e) {
      throw new RuntimeException(e);
    }
  }