(Properties tbl, Configuration conf)
| 383 | } |
| 384 | |
| 385 | public boolean getBoolean(Properties tbl, Configuration conf) { |
| 386 | String value = lookupValue(tbl, conf); |
| 387 | if (value != null) { |
| 388 | return Boolean.parseBoolean(value); |
| 389 | } |
| 390 | return (Boolean) defaultValue; |
| 391 | } |
| 392 | |
| 393 | public boolean getBoolean(Configuration conf) { |
| 394 | return getBoolean(null, conf); |
no test coverage detected