(Properties props, String key, boolean def)
| 304 | } |
| 305 | |
| 306 | private static boolean getBoolean(Properties props, String key, boolean def) |
| 307 | { |
| 308 | String s = props.getProperty(key); |
| 309 | return s == null ? def : Boolean.parseBoolean(s); |
| 310 | } |
| 311 | } |
no test coverage detected