| 77 | } |
| 78 | |
| 79 | bool FlowDiffUtils::HasPrevDifference(const SListView<TSharedPtr<FDiffSingleResult>>& ListView, const TArray<TSharedPtr<FDiffSingleResult>>& ListViewSource) |
| 80 | { |
| 81 | const int32 CurrentIndex = GetCurrentIndex(ListView, ListViewSource); |
| 82 | return ListViewSource.IsValidIndex(CurrentIndex - 1); |
| 83 | } |
| 84 | |
| 85 | BEGIN_SLATE_FUNCTION_BUILD_OPTIMIZATION |
| 86 |
nothing calls this directly
no test coverage detected