소스 검색

fix xml structure

Martin Kunz 1 년 전
부모
커밋
9d4ecf9dab
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      src/ua/UANodeSet.ts

+ 4 - 4
src/ua/UANodeSet.ts

@@ -31,15 +31,15 @@ export class UANodeSet implements IToXML{
     }
 
     toXML(): XMLElem {
-        const elem =new XMLElem('UANodeSet');
-        const xmlModels=elem.add(new XMLElem('Models'));
+        const xmlUANodeSet =new XMLElem('UANodeSet');
+        const xmlModels=xmlUANodeSet.add(new XMLElem('Models'));
         for(const model of this.models) {
             xmlModels.add(model.toXML())
         }
         for(const node of this.nodes) {
-            xmlModels.add(node.toXML())
+            xmlUANodeSet.add(node.toXML())
         }
-        return elem;
+        return xmlUANodeSet;
     }
 
     static async load(url: string) {