put a mononoke spider princess per bean grave

This commit is contained in:
Willem Cazander 2022-10-18 12:11:12 +02:00
parent 84f3a34f21
commit 37ab7ae4be
23 changed files with 83 additions and 71 deletions

View file

@ -190,7 +190,9 @@ public class CalculatorDeskApp extends AbstractDeskApp implements DeskAppRendere
result = v1*v2;
break;
case DIVIDE:
result = v1/v2;
if (v2 != 0) {
result = v1/v2;
}
break;
default:
break;