remove extraneous quote
This commit is contained in:
parent
bf488274a3
commit
6e4a7f1019
|
@ -570,7 +570,7 @@ InvalidNullabilityException::InvalidNullabilityException(std::string const& obje
|
|||
MissingObjectTypeException::MissingObjectTypeException(std::string const& object_type, Property const& property) :
|
||||
ObjectSchemaPropertyException(object_type, property)
|
||||
{
|
||||
m_what = "Property '" + property.name + "' has an invalid type '" + property.object_type + "'.'";
|
||||
m_what = "Property '" + property.name + "' has an invalid type '" + property.object_type + "'.";
|
||||
}
|
||||
|
||||
MismatchedPropertiesException::MismatchedPropertiesException(std::string const& object_type, Property const& old_property, Property const& new_property) :
|
||||
|
|
Loading…
Reference in New Issue