Skip to content

Commit

Permalink
Merge pull request #1079 from solidify/bugfix/no-bidirectional-link-c…
Browse files Browse the repository at this point in the history
…heck

Remove bi-directional link (does not work in a cross-project scenario)
  • Loading branch information
Alexander-Hjelm authored Dec 12, 2024
2 parents 7db1d56 + bb57444 commit 4785d32
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/WorkItemMigrator/JiraExport/JiraItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -397,12 +397,6 @@ private static RevisionAction<JiraLink> TransformLinkChange(JiraChangeItem item,
}
else
{
if (linkType.Inward == linkType.Outward && sourceItemKey.CompareTo(targetItemKey) < 0)
{
Logger.Log(LogLevel.Debug, $"Link is non-directional ({linkType.Name}) and sourceItem ({sourceItemKey}) is older then target item ({targetItemKey}). Link change will be part of target item.");
return null;
}

return new RevisionAction<JiraLink>()
{
ChangeType = changeType,
Expand Down

0 comments on commit 4785d32

Please sign in to comment.