Checks if the specified string is a jar URL. @param url url to be tested @return result of check
(final String url)
| 221 | * @return result of check |
| 222 | */ |
| 223 | static boolean isJarURL(final String url) { |
| 224 | return url.startsWith(JARPREF); |
| 225 | } |
| 226 | |
| 227 | /** |
| 228 | * Ignore SSL certificates. |
no test coverage detected