소스 검색

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);
     }