Fixes for search of members + Removed fixme in member that apparently are not necessary after tags refactoring

This commit is contained in:
Bjarke Berg
2019-01-24 12:17:30 +01:00
parent 6e1a860e77
commit 49b2a9a080
5 changed files with 5 additions and 5 deletions

View File

@@ -954,7 +954,7 @@ namespace Umbraco.Web
/// </remarks>
public static IEnumerable<IPublishedContent> Children(this IPublishedContent content, string culture = null)
{
if (content == null) throw new ArgumentNullException(nameof(content)); // fixme/task wtf is this?
if (content == null) throw new ArgumentNullException(nameof(content));
return content.Children.WhereIsInvariantOrHasCulture(culture);
}