Addressed PR feedback on function args and names

This commit is contained in:
sconel
2021-04-29 18:09:38 -07:00
parent 15b1ae4b2d
commit a9de24ef7d
4 changed files with 29 additions and 29 deletions
@@ -176,7 +176,7 @@ namespace AZ::Prefab
bool PrefabBuilderComponent::StoreProducts(
AZ::IO::PathView tempDirPath,
const AzToolsFramework::Prefab::PrefabConversionUtils::PrefabProcessorContext::ProcessedObjectStoreContainer& store,
const AzToolsFramework::Prefab::PrefabConversionUtils::PrefabProcessorContext::ProductDependencyContainer& registeredDependencies,
const AzToolsFramework::Prefab::PrefabConversionUtils::PrefabProcessorContext::ProductAssetDependencyContainer& registeredDependencies,
AZStd::vector<AssetBuilderSDK::JobProduct>& outputProducts) const
{
outputProducts.reserve(store.size());
@@ -264,7 +264,7 @@ namespace AZ::Prefab
if (!context.HasPrefabs())
{
if (StoreProducts(tempDirPath, context.GetProcessedObjects(),
context.GetRegisteredProductDependencies(), jobProducts))
context.GetRegisteredProductAssetDependencies(), jobProducts))
{
return true;
}