void removeAttributeNS(Element element, String ns, String name)

Source

void removeAttributeNS(Element element, String ns, String name) {
  element.getNamespacedAttributes(ns).remove(name);
}