(String s)
| 1600 | } |
| 1601 | |
| 1602 | private String decode(String s) { |
| 1603 | if (s == null) { |
| 1604 | return s; |
| 1605 | } |
| 1606 | |
| 1607 | try { |
| 1608 | return URIEncoderDecoder.decode(s); |
| 1609 | } catch (UnsupportedEncodingException e) { |
| 1610 | throw new RuntimeException(e.toString()); |
| 1611 | } |
| 1612 | } |
| 1613 | |
| 1614 | /** |
| 1615 | * Returns the textual string representation of this URI instance using the |
no test coverage detected