(Request request)
| 84 | } |
| 85 | |
| 86 | private static String buildUrl(Request request) { |
| 87 | try { |
| 88 | return URLDecoder.decode(request.url(), Util.UTF_8.name()); |
| 89 | } catch (final UnsupportedEncodingException e) { |
| 90 | throw new RuntimeException(e); |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | private final HttpMethod method; |
| 95 |
no test coverage detected