GebietsListe debugged

This commit is contained in:
Jonas Nikolay 2022-12-09 15:11:10 +01:00
parent 248eae539c
commit 1395a5ddc2

View File

@ -53,7 +53,7 @@ public class GebietsListe {
public int getAnzahlUnvollstaendig(){ public int getAnzahlUnvollstaendig(){
int zaehler = 0; int zaehler = 0;
for (Gebiet g:gebiete) { for (Gebiet g:gebiete) {
if (g.getJahr() <= 0 || g.getSchlüssel() <= 0 || g.getName() == null || g.getGesamtEinkommen() <= 0 || g.getDurchschnittsEinkommen() <= 0) { if (g.getGesamtEinkommen() <= 0 || g.getDurchschnittsEinkommen() <= 0) {
zaehler++; zaehler++;
} }
} }