From b4f2d514be5b2c14bbb5c4b2729daf407bd70176 Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Wed, 16 Jan 2019 11:44:27 +0100 Subject: [PATCH] #3305 - changed new method to be internal --- src/Umbraco.Web/PublishedContentExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web/PublishedContentExtensions.cs b/src/Umbraco.Web/PublishedContentExtensions.cs index 0e1f75684a..d30414b3d3 100644 --- a/src/Umbraco.Web/PublishedContentExtensions.cs +++ b/src/Umbraco.Web/PublishedContentExtensions.cs @@ -272,7 +272,7 @@ namespace Umbraco.Web /// The content. /// The specific culture to filter for. If null is used the current culture is used. (Default is null) /// These of the inputs that has the specified culture or are invariant. - public static IEnumerable WhereHasCultureOrInvariant(this IEnumerable contents, string culture = null) + internal static IEnumerable WhereHasCultureOrInvariant(this IEnumerable contents, string culture = null) { if (contents == null) throw new ArgumentNullException(nameof(contents));