Internal use only, for sources known to always be valid. @param source @param failSilently @return
(String source, boolean failSilently)
| 248 | * @return |
| 249 | */ |
| 250 | static String decodeString(String source, boolean failSilently) { |
| 251 | try { |
| 252 | return decodeString(source); |
| 253 | } catch (URISyntaxException e) { |
| 254 | throw new IllegalArgumentException(e.getMessage()); |
| 255 | } |
| 256 | } |
| 257 | |
| 258 | /** |
| 259 | * A utility method to decode a string. |
no test coverage detected