From a2bd8384675617c057da369bbe1c133edb75d4f3 Mon Sep 17 00:00:00 2001 From: pbs2h21ash Date: Tue, 6 Dec 2022 13:54:40 +0100 Subject: [PATCH] Gebiet --- src/Gebiet.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Gebiet.java b/src/Gebiet.java index 94014d9..453c5c9 100644 --- a/src/Gebiet.java +++ b/src/Gebiet.java @@ -1,4 +1,3 @@ - public class Gebiet implements GebietInterface{ private int jahr; private int schlüssel; @@ -31,11 +30,17 @@ public class Gebiet implements GebietInterface{ @Override public long getGesamtEinkommen() { + if(gesamtEinkommen <= 0){ + return -1; + } return gesamtEinkommen; } @Override public int getDurchschnittsEinkommen() { + if(durchschnittsEinkommen <= 0){ + return -1; + } return durchschnittsEinkommen; }