Compare commits

..

1 commit

Author SHA1 Message Date
Xuewen Wang
ddb2413910 modify something 2024-02-26 21:17:15 +00:00
2 changed files with 5 additions and 2 deletions

View file

@ -1,3 +1,3 @@
# pull-request-conflict
A tiny repo to check possible bug.
A tiny repo to check possible bug

View file

@ -470,10 +470,13 @@ class UtilityServerStub {
* the name of the addXML specific function
*/
dumpXML(args) {
const xmlDumper = new this.mod.datastore.XMLDumper(this.mod.writer);
if (args.ids === undefined) {
throw new Error('Need an object id to add to XML dumper')
}
const xmlDumper = new this.mod.datastore.XMLDumper(this.mod.writer);
xmlDumper.AddAuxiliaryData(this.mod.writer);
let evalArgs
args.ids.forEach((id) => {
if (isNaN(id)) { evalArgs = '"' + id + '"'; }