#3305 - changed new method to be internal

This commit is contained in:
Bjarke Berg
2019-01-16 11:44:27 +01:00
parent 8ad998ab12
commit b4f2d514be

View File

@@ -272,7 +272,7 @@ namespace Umbraco.Web
/// <param name="contents">The content.</param>
/// <param name="culture">The specific culture to filter for. If null is used the current culture is used. (Default is null)</param>
/// <returns>These of the inputs that has the specified culture or are invariant.</returns>
public static IEnumerable<IPublishedContent> WhereHasCultureOrInvariant(this IEnumerable<IPublishedContent> contents, string culture = null)
internal static IEnumerable<IPublishedContent> WhereHasCultureOrInvariant(this IEnumerable<IPublishedContent> contents, string culture = null)
{
if (contents == null) throw new ArgumentNullException(nameof(contents));