Skip to content

Commit c9129e0

Browse files
committed
Fixed an unused variable.
1 parent e5ae467 commit c9129e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Verlite.Core/HeightCalculator.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ public FromCommitOptions(
170170
var parentHeightSinceBranch = isDiverging ? 0 : heightSinceBranch + 1;
171171
// Stryker restore all
172172

173-
toVisit.Push((parents[i], height + 1, parentDescriptor, parentHeightSinceBranch));
173+
toVisit.Push((parents[i], parentHeight, parentDescriptor, parentHeightSinceBranch));
174174
}
175175
}
176176
}

0 commit comments

Comments
 (0)