(Properties tbl, Configuration conf)
| 399 | } |
| 400 | |
| 401 | public double getDouble(Properties tbl, Configuration conf) { |
| 402 | String value = lookupValue(tbl, conf); |
| 403 | if (value != null) { |
| 404 | return Double.parseDouble(value); |
| 405 | } |
| 406 | return ((Number) defaultValue).doubleValue(); |
| 407 | } |
| 408 | |
| 409 | public double getDouble(Configuration conf) { |
| 410 | return getDouble(null, conf); |
no test coverage detected