Skip to content

Commit

Permalink
comment out this bit - tests pass again
Browse files Browse the repository at this point in the history
  • Loading branch information
ferventcoder committed Jan 20, 2016
1 parent e364bb8 commit 17ec714
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Core/Extensions/XElementExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ public static XElement MergeWith(this XElement source, XElement target, IDiction
}
else
{
if (sourceChild == null)
{
//if (sourceChild == null)
//{
// If that element is null then add that node
source.Add(targetChild);

Expand All @@ -169,7 +169,7 @@ public static XElement MergeWith(this XElement source, XElement target, IDiction

// when we see an element, add all the previous comments before the child element
AddContents(pendingComments, newlyAddedElement.AddBeforeSelf);
}
// }
}
}
}
Expand Down

0 comments on commit 17ec714

Please sign in to comment.