remove snapshot param in yxml.getAttributes

This commit is contained in:
Kevin Jahns 2022-11-30 09:23:35 +01:00
parent 7ea8ffebae
commit cac9407185

View File

@ -176,12 +176,11 @@ export class YXmlElement extends YXmlFragment {
/** /**
* Returns all attribute name/value pairs in a JSON Object. * Returns all attribute name/value pairs in a JSON Object.
* *
* @param {Snapshot} [snapshot]
* @return {Object<string, any>} A JSON Object that describes the attributes. * @return {Object<string, any>} A JSON Object that describes the attributes.
* *
* @public * @public
*/ */
getAttributes (snapshot) { getAttributes () {
return typeMapGetAll(this) return typeMapGetAll(this)
} }