You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the XML2 module we have redundant functions: findvalue/findvalues and findnode/findnodes.
the couple's first one returns the first element found while the couple's econd returns a complete array of all element found.
It might be relevant to replace all the findvalue/findnode calls with findvalues[1]/findvalues[1] and thus delete findvalue/findnode.
The text was updated successfully, but these errors were encountered:
In the XML2 module we have redundant functions:
findvalue/findvalues
andfindnode/findnodes
.the couple's first one returns the first element found while the couple's econd returns a complete array of all element found.
It might be relevant to replace all the
findvalue/findnode
calls withfindvalues[1]/findvalues[1]
and thus deletefindvalue/findnode
.The text was updated successfully, but these errors were encountered: