Browse Source

rem. duplicate method

Martin Kunz 1 month ago
parent
commit
f5329b0d7c
1 changed files with 0 additions and 10 deletions
  1. 0 10
      src/ua/UAMethod.ts

+ 0 - 10
src/ua/UAMethod.ts

@@ -30,16 +30,6 @@ export class UAMethod extends UABaseNode {
         elem.attr("Executable", this.executable.toString());
         return elem;
     }
-
-    getModellingRule(){
-        let res:any = "";
-        this.references.forEach((ref)=>{
-            if(ref.referenceType == "HasModellingRule"){
-                res = ref.toNode.browseName;
-            }
-        })
-        return res;
-    }
 }
 
 export interface UAMethodNodeOptions extends UABaseNodeOptions{