File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
Code/Framework/AzToolsFramework/AzToolsFramework/UI/DocumentPropertyEditor Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -733,8 +733,6 @@ namespace AzToolsFramework
733
733
{
734
734
if (domOperation.GetType () == AZ::Dom::PatchOperation::Type::Move)
735
735
{
736
- AZ_TracePrintf (" HandleOperationAtPath" , " PatchOperation::Type::Move" );
737
-
738
736
/* For a move operation, note that source and/or destination widgets might not exist due to collapsed nodes.
739
737
* if both source and destination location exist, move the existing widget
740
738
* if source exists but not destination, it's a remove
@@ -851,14 +849,12 @@ namespace AzToolsFramework
851
849
if (domOperation.GetType () == AZ::Dom::PatchOperation::Type::Remove ||
852
850
domOperation.GetType () == AZ::Dom::PatchOperation::Type::Replace)
853
851
{
854
- AZ_TracePrintf (" HandleOperationAtPath" , " PatchOperation::Type::Remove" );
855
852
RemoveChildAt (childIndex);
856
853
}
857
854
858
855
if (domOperation.GetType () == AZ::Dom::PatchOperation::Type::Replace ||
859
856
domOperation.GetType () == AZ::Dom::PatchOperation::Type::Add)
860
857
{
861
- AZ_TracePrintf (" HandleOperationAtPath" , " PatchOperation::Type::Add" );
862
858
AddChildFromDomValue (domOperation.GetValue (), childIndex);
863
859
}
864
860
}
You can’t perform that action at this time.
0 commit comments