From fd228685cb8684379499c48d34057851199188fc Mon Sep 17 00:00:00 2001 From: Xie Yuheng Date: Sat, 29 Jul 2023 13:09:54 +0800 Subject: [PATCH] up --- src/lang/definitions/NodeDefinition.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/lang/definitions/NodeDefinition.ts b/src/lang/definitions/NodeDefinition.ts index e2199026..4a5582f6 100644 --- a/src/lang/definitions/NodeDefinition.ts +++ b/src/lang/definitions/NodeDefinition.ts @@ -15,10 +15,6 @@ export class NodeDefinition implements Definition { public output: Array, ) {} - get fullName(): string { - return this.mod.url.href + "#" + this.name - } - build(): Node { return createNode(this.kind, this.mod, this.name, this.input, this.output) }