summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml/XamlNode.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Xaml/XamlNode.cs')
-rw-r--r--Xamarin.Forms.Xaml/XamlNode.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/Xamarin.Forms.Xaml/XamlNode.cs b/Xamarin.Forms.Xaml/XamlNode.cs
index a19e7d5c..752f3845 100644
--- a/Xamarin.Forms.Xaml/XamlNode.cs
+++ b/Xamarin.Forms.Xaml/XamlNode.cs
@@ -42,7 +42,7 @@ namespace Xamarin.Forms.Xaml
}
[DebuggerDisplay("{NamespaceUri}:{Name}")]
- internal class XmlType
+ class XmlType
{
public XmlType(string namespaceUri, string name, IList<XmlType> typeArguments)
{
@@ -53,8 +53,7 @@ namespace Xamarin.Forms.Xaml
public string NamespaceUri { get; }
public string Name { get; }
- public IList<XmlType> TypeArguments { get; private set; }
-
+ public IList<XmlType> TypeArguments { get; }
}
internal abstract class BaseNode : IXmlLineInfo, INode