From e9cf0bbf6e8a5cda2865076c1bd694513ca2f6d0 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Wed, 23 Mar 2016 14:32:37 +0100 Subject: [PATCH] Remove unused ol.xml.getAttributeNodeNS function --- src/ol/xml.js | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/ol/xml.js b/src/ol/xml.js index a3b772a568..3a14ac5419 100644 --- a/src/ol/xml.js +++ b/src/ol/xml.js @@ -116,17 +116,6 @@ ol.xml.getAttributeNS = function(node, namespaceURI, name) { }; -/** - * @param {Node} node Node. - * @param {?string} namespaceURI Namespace URI. - * @param {string} name Attribute name. - * @return {?Node} Attribute node or null if none found. - */ -ol.xml.getAttributeNodeNS = function(node, namespaceURI, name) { - return node.getAttributeNodeNS(namespaceURI, name); -}; - - /** * @param {Node} node Node. * @param {?string} namespaceURI Namespace URI.