Compare commits

...

2 Commits

Author SHA1 Message Date
4e2778d2c5 Merge remote-tracking branch 'origin/master' 2022-12-09 15:11:18 +01:00
1395a5ddc2 GebietsListe debugged 2022-12-09 15:11:10 +01:00

View File

@ -53,7 +53,7 @@ public class GebietsListe {
public int getAnzahlUnvollstaendig(){
int zaehler = 0;
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++;
}
}