XmlPublishedCache - GetXml() can be private, no need for internal

This commit is contained in:
Stephan
2013-04-04 15:24:29 -02:00
parent ff6ee360da
commit 4201d678fa

View File

@@ -360,7 +360,7 @@ namespace Umbraco.Web.PublishedCache.XmlPublishedCache
return GetXmlDelegate(umbracoContext.UmbracoUser, umbracoContext.InPreviewMode);
}
internal XmlDocument GetXml()
private XmlDocument GetXml()
{
return GetXmlDelegate(null, false);
}