Fikset enda en feil
This commit is contained in:
parent
7358cb2de7
commit
66daa5dea2
|
@ -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;
|
||||
|
|
|
@ -85,8 +85,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;
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>it1901</groupId>
|
||||
<artifactId>modules-ui</artifactId>
|
||||
|
||||
<parent>
|
||||
|
|
|
@ -85,8 +85,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;
|
||||
|
|
Loading…
Reference in New Issue