Fikset enda en feil
This commit is contained in:
@@ -89,8 +89,8 @@ public class Calc {
|
||||
if (getOperandCount() < 2) {
|
||||
throw new IllegalStateException("Too few operands (" + getOperandCount() + ") on the stack");
|
||||
}
|
||||
var op1 = popOperand();
|
||||
var op2 = popOperand();
|
||||
var op1 = popOperand();
|
||||
var result = op.apply(op1, op2);
|
||||
pushOperand(result);
|
||||
return result;
|
||||
|
||||
Reference in New Issue
Block a user