From ba3f6eee7b6deae67c9c9860201d50fd6661fc65 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Wed, 1 Feb 2023 17:34:55 +0200 Subject: [PATCH] Instruction - Removed unneeded constructor --- source/tlang/compiler/codegen/instruction.d | 5 ----- 1 file changed, 5 deletions(-) diff --git a/source/tlang/compiler/codegen/instruction.d b/source/tlang/compiler/codegen/instruction.d index 23d55a94..9022114e 100644 --- a/source/tlang/compiler/codegen/instruction.d +++ b/source/tlang/compiler/codegen/instruction.d @@ -15,11 +15,6 @@ public class Instruction protected string addInfo; - this() - { - // this.instructionName = instructionName; - } - public override string toString() { return "[Instruction: "~this.classinfo.name~":"~addInfo~"]";