| 484 | } |
| 485 | |
| 486 | TString TJsonValue::GetStringSafe(const TString& defaultValue) const { |
| 487 | if (Type == JSON_UNDEFINED) { |
| 488 | return defaultValue; |
| 489 | } |
| 490 | return GetStringSafe(); |
| 491 | } |
| 492 | |
| 493 | const TJsonValue::TMapType& TJsonValue::GetMapSafe() const { |
| 494 | if (Type != JSON_MAP) { |
no outgoing calls
no test coverage detected