60
branchIndex int32,
61
incomingVersion int64,
63
>
versionHistories := r.mutableState.GetExecutionInfo().GetVersionHistories()
64
>
currentVersionHistoryIndex := versionHistories.GetCurrentVersionHistoryIndex()
65
>
currentVersionHistory, err := versionhistory.GetVersionHistory(versionHistories, currentVersionHistoryIndex)
66
>
if err != nil {
67
return nil, false, err
68
}
69
>
currentLastItem, err := versionhistory.GetLastVersionHistoryItem(currentVersionHistory)
conflict_resolver.go
70
>
if err != nil {
71
return nil, false, err
72
}
73
74
// mutable state does not need Rebuild
76
return r.mutableState, false, nil
77
}