| 162 | } |
| 163 | |
| 164 | FString FFindInFlowResult::GetDescriptionText() const |
| 165 | { |
| 166 | if (const UFlowGraphNode* FlowGraphNode = Cast<UFlowGraphNode>(GraphNode.Get())) |
| 167 | { |
| 168 | return FlowGraphNode->GetNodeDescription(); |
| 169 | } |
| 170 | |
| 171 | return FString(); |
| 172 | } |
| 173 | |
| 174 | FString FFindInFlowResult::GetCommentText() const |
| 175 | { |
nothing calls this directly
no test coverage detected