diff --git a/src/Umbraco.Core/Xml/XmlHelper.cs b/src/Umbraco.Core/Xml/XmlHelper.cs
index 41025d21ef..3fd8dcaea5 100644
--- a/src/Umbraco.Core/Xml/XmlHelper.cs
+++ b/src/Umbraco.Core/Xml/XmlHelper.cs
@@ -341,7 +341,7 @@ namespace Umbraco.Core.Xml
///
/// The XmlNode.
/// the value as a string
- public static string GetNodeValue(XmlNode n)
+ internal static string GetNodeValue(XmlNode n)
{
var value = string.Empty;
if (n == null || n.FirstChild == null)
@@ -373,7 +373,7 @@ namespace Umbraco.Core.Xml
/// Name of the root.
/// Name of the element.
/// Returns an System.Xml.XmlDocument representation of the delimited string data.
- public static XmlDocument Split(string data, string[] separator, string rootName, string elementName)
+ internal static XmlDocument Split(string data, string[] separator, string rootName, string elementName)
{
return Split(new XmlDocument(), data, separator, rootName, elementName);
}
@@ -387,7 +387,7 @@ namespace Umbraco.Core.Xml
/// Name of the root node.
/// Name of the element node.
/// Returns an System.Xml.XmlDocument representation of the delimited string data.
- public static XmlDocument Split(XmlDocument xml, string data, string[] separator, string rootName, string elementName)
+ internal static XmlDocument Split(XmlDocument xml, string data, string[] separator, string rootName, string elementName)
{
// load new XML document.
xml.LoadXml(string.Concat("<", rootName, "/>"));
@@ -416,7 +416,7 @@ namespace Umbraco.Core.Xml
///
///
///
- public static Dictionary GetAttributesFromElement(string tag)
+ internal static Dictionary GetAttributesFromElement(string tag)
{
var m =
Regex.Matches(tag, "(?\\S*)=\"(?[^\"]*)\"",