| 33 | } |
| 34 | |
| 35 | IJsonHandler* JsonObjectJsonHandler::readNull() { |
| 36 | addOrReplace(*this->_stack.back(), CesiumUtility::JsonValue::Null()); |
| 37 | return this->doneElement(); |
| 38 | } |
| 39 | |
| 40 | IJsonHandler* JsonObjectJsonHandler::readBool(bool b) { |
| 41 | addOrReplace(*this->_stack.back(), b); |
nothing calls this directly
no test coverage detected