remove a check at handleOperation

This commit is contained in:
tibbi 2016-01-01 19:43:09 +01:00
parent e004d15c10
commit 80f5637a9f
1 changed files with 0 additions and 3 deletions

View File

@ -122,9 +122,6 @@ public class CalculatorImpl {
} }
public void handleOperation(String operation) { public void handleOperation(String operation) {
if (lastKey.equals(operation))
return;
if (lastKey.equals(Constants.DIGIT)) if (lastKey.equals(Constants.DIGIT))
handleResult(); handleResult();