From 06eeb03f010f8717ab30817caf4cbfb59ff30b7e Mon Sep 17 00:00:00 2001 From: Daniel Espinosa Date: Fri, 5 Jul 2019 13:56:24 -0500 Subject: [PATCH] XDocument: removed dependency on Namespace deprecated interface --- gxml/XDocument.vala | 1 - 1 file changed, 1 deletion(-) diff --git a/gxml/XDocument.vala b/gxml/XDocument.vala index 0100f333..623d845c 100644 --- a/gxml/XDocument.vala +++ b/gxml/XDocument.vala @@ -93,7 +93,6 @@ public class GXml.XDocument : GXml.XNode, // GXml.DomNode public override Gee.Map attrs { owned get { return new XHashMapAttr (this, (Xml.Node*) doc) as Gee.Map; } } public override Gee.BidirList children_nodes { owned get { return new XListChildren (this, (Xml.Node*) doc) as Gee.BidirList; } } - public override Gee.List namespaces { owned get { return new XListNamespaces (this, doc->get_root_element()) as Gee.List; } } public override GXml.DomDocument document { get { return this; } } // GXml.DomDocument public bool indent { get; set; default = false; } -- GitLab