removes test code

This commit is contained in:
Shannon
2019-10-17 18:43:54 +11:00
committed by Bjarke Berg
parent 652591d1c8
commit 296e1ee80f

View File

@@ -1013,14 +1013,6 @@ namespace Umbraco.Web.PublishedCache.NuCache
// i think this used to but it doesn't seem bad anymore that I can see...
while (child.NextSiblingContentId > 0)
{
if (child.NextSiblingContentId == content.Id)
{
content.PreviousSiblingContentId = child.Id;
child = content;
continue;
}
// get next child
var nextChildLink = GetRequiredLinkedNode(child.NextSiblingContentId, "next child", null);
var nextChild = nextChildLink.Value;