| 580 | } |
| 581 | |
| 582 | static const char* getOptionalString(Properties* properties, const char* key, const char* defaultValue) |
| 583 | { |
| 584 | |
| 585 | const char* ret = properties->getString(key); |
| 586 | if (!ret) |
| 587 | ret = defaultValue; |
| 588 | |
| 589 | return ret; |
| 590 | } |
| 591 | |
| 592 | } |
no test coverage detected