(final String str)
| 1265 | /// |
| 1266 | /// encoded string |
| 1267 | public static String encodeUrl(final String str) { |
| 1268 | return encode(str, "%20"); |
| 1269 | } |
| 1270 | |
| 1271 | /// Encodes the provided string as a URL (with %20 for spaces). |
| 1272 | /// |
no test coverage detected