Skip to content

Commit 27e9840

Browse files
committed
Remove debug prints
Signed-off-by: Danilo Aimini <[email protected]>
1 parent 2bf445f commit 27e9840

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Code/Framework/AzToolsFramework/AzToolsFramework/UI/DocumentPropertyEditor/DocumentPropertyEditor.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -733,8 +733,6 @@ namespace AzToolsFramework
733733
{
734734
if (domOperation.GetType() == AZ::Dom::PatchOperation::Type::Move)
735735
{
736-
AZ_TracePrintf("HandleOperationAtPath", "PatchOperation::Type::Move");
737-
738736
/* For a move operation, note that source and/or destination widgets might not exist due to collapsed nodes.
739737
* if both source and destination location exist, move the existing widget
740738
* if source exists but not destination, it's a remove
@@ -851,14 +849,12 @@ namespace AzToolsFramework
851849
if (domOperation.GetType() == AZ::Dom::PatchOperation::Type::Remove ||
852850
domOperation.GetType() == AZ::Dom::PatchOperation::Type::Replace)
853851
{
854-
AZ_TracePrintf("HandleOperationAtPath", "PatchOperation::Type::Remove");
855852
RemoveChildAt(childIndex);
856853
}
857854

858855
if (domOperation.GetType() == AZ::Dom::PatchOperation::Type::Replace ||
859856
domOperation.GetType() == AZ::Dom::PatchOperation::Type::Add)
860857
{
861-
AZ_TracePrintf("HandleOperationAtPath", "PatchOperation::Type::Add");
862858
AddChildFromDomValue(domOperation.GetValue(), childIndex);
863859
}
864860
}

0 commit comments

Comments
 (0)