removes test code

This commit is contained in:
Shannon
2019-10-17 18:43:54 +11:00
parent ea642b3c51
commit c91680e4c7

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;