Reponse to code review feedback. The main change is making GetPropertyValues return by const ref.

Signed-off-by: santorac <55155825+santorac@users.noreply.github.com>
This commit is contained in:
santorac
2022-02-08 11:18:17 -08:00
parent 3a426344dd
commit ddab03d678
4 changed files with 9 additions and 9 deletions
@@ -677,7 +677,7 @@ namespace MaterialEditor
if (!loadResult)
{
AZ_Error("MaterialDocument", false, "Material source data could not be loaded: '%s'.", m_absolutePath.c_str());
return OpenFailed();
return false;
}
m_materialSourceData = loadResult.TakeValue();