(String str, String spaceChar)
| 1309 | } |
| 1310 | |
| 1311 | private static String encode(String str, String spaceChar) { |
| 1312 | if (str == null) { |
| 1313 | return null; |
| 1314 | } |
| 1315 | return encode(toCharArray(str), spaceChar); |
| 1316 | } |
| 1317 | |
| 1318 | /// Decodes a String URL encoded URL |
| 1319 | /// |
no test coverage detected