Remove unused ol.xml.getAttributeNodeNS function

This commit is contained in:
Frederic Junod
2016-03-23 14:32:37 +01:00
parent 051ed439ca
commit e9cf0bbf6e

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.