瀏覽代碼

Remove reset of outputComputer

ApisNecros 1 年之前
父節點
當前提交
facb22887c
共有 1 個文件被更改,包括 0 次插入1 次删除
  1. 0 1
      IntComp/Computer.js

+ 0 - 1
IntComp/Computer.js

@@ -514,7 +514,6 @@ module.exports = class Computer {
     Reset() {
         this.stack = new Stack(this._initialMemory);
         this.outputValues = [];
-        this.outputComputer = null;
         this.options.inputModeMap = DeepClone(this.options._initialInputModeMap);
     }