For testing
(String[] args)
| 463 | |
| 464 | /** For testing */ |
| 465 | public static void main(String[] args) { |
| 466 | |
| 467 | if (args.length != 1) { |
| 468 | System.err.println("Usage : URLUtil <url>"); |
| 469 | return; |
| 470 | } |
| 471 | |
| 472 | String url = args[0]; |
| 473 | try { |
| 474 | System.out.println(URLUtil.getDomainName(new URL(url))); |
| 475 | } catch (MalformedURLException ex) { |
| 476 | System.err.println(ex.getMessage()); |
| 477 | } |
| 478 | } |
| 479 | } |
nothing calls this directly
no test coverage detected