Merge pull request #5108 from fredj/rm_ol.xml.getAttributeNodeNS

Remove unused ol.xml.getAttributeNodeNS function
This commit is contained in:
Frédéric Junod
2016-03-23 15:39:37 +01:00

View File

@@ -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.