Small indentation typo in my fix

This commit is contained in:
AlbertoPellitteri 2021-05-12 09:39:54 +02:00
parent 2f46e77ba3
commit 2f9c045754

View File

@ -147,7 +147,7 @@ class CalculatorImpl(calculator: Calculator, private val context: Context) {
secondValue = getSecondValue()
calculateResult()
if (lastOperation == DIVIDE && secondValue == 0.0){
if (lastOperation == DIVIDE && secondValue == 0.0) {
lastKey = DIGIT
return
}