adding a trick to get some crash related info

This commit is contained in:
tibbi 2021-03-27 20:47:33 +01:00
parent 6075d917d6
commit 2b8fe04820

View File

@ -96,7 +96,18 @@ class CalculatorImpl(calculator: Calculator, private val context: Context) {
if (lastOperation != "" && operation == PERCENT) {
handlePercent()
} else {
secondValue = getSecondValue()
// split to multiple lines just to see when does the crash happen
secondValue = when (operation) {
PLUS -> getSecondValue()
MINUS -> getSecondValue()
MULTIPLY -> getSecondValue()
DIVIDE -> getSecondValue()
ROOT -> getSecondValue()
POWER -> getSecondValue()
PERCENT -> getSecondValue()
else -> getSecondValue()
}
calculateResult()
if (!operations.contains(inputDisplayedFormula.last().toString())) {