(Link link, String option)
| 530 | } |
| 531 | |
| 532 | public static boolean getOptionBooleanDefTrue(Link link, String option) { |
| 533 | String s = getOption(link, option); |
| 534 | return !(s.equalsIgnoreCase("FALSE") || s.equalsIgnoreCase("OFF")); |
| 535 | } |
| 536 | |
| 537 | public static long getOptionLong(Link link, String option) { |
| 538 | String s = getOption(link, option); |
no test coverage detected