From bd98457eba3ffe22cf0763cfa69dcfa93927f26d Mon Sep 17 00:00:00 2001 From: Frederique Mittelstaedt Date: Thu, 7 Mar 2019 14:53:28 +0000 Subject: [PATCH] fix(calculator.ts): revert the previous "useless" fix --- src/Calculator.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Calculator.ts b/src/Calculator.ts index 04d7a64..0044d72 100644 --- a/src/Calculator.ts +++ b/src/Calculator.ts @@ -73,8 +73,6 @@ export default class Calculator { } public inverse() { - this.current = div(1, this.current); - this.current = div(1, this.current); this.current = div(1, this.current); return this; }