remove extraneous quote

This commit is contained in:
Ari Lazier 2016-05-02 12:57:15 -07:00
parent bf488274a3
commit 6e4a7f1019
1 changed files with 1 additions and 1 deletions

View File

@ -570,7 +570,7 @@ InvalidNullabilityException::InvalidNullabilityException(std::string const& obje
MissingObjectTypeException::MissingObjectTypeException(std::string const& object_type, Property const& property) : MissingObjectTypeException::MissingObjectTypeException(std::string const& object_type, Property const& property) :
ObjectSchemaPropertyException(object_type, 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) : MismatchedPropertiesException::MismatchedPropertiesException(std::string const& object_type, Property const& old_property, Property const& new_property) :