Umlaute: ü = ue

This commit is contained in:
Martin Töws 2022-12-09 14:48:30 +01:00
parent d6685d8020
commit d45ae26461

View File

@ -1,17 +1,16 @@
public class Gebiet {
private int jahr;
private int schlüssel;
private int schluessel;
private String name;
private long gesamtEinkommen;
private int durchschnittsEinkommen;
public Gebiet(int jahr, int schlüssel, String name, long gesamtEinkommen, int durchschnittsEinkommen) {
public Gebiet(int jahr, int schluessel, String name, long gesamtEinkommen, int durchschnittsEinkommen) {
this.jahr = jahr;
this.schlüssel = schlüssel;
this.schluessel = schluessel;
this.name = name;
this.gesamtEinkommen = gesamtEinkommen;
this.durchschnittsEinkommen = durchschnittsEinkommen;
// lol
}
public int getJahr() {
@ -19,7 +18,7 @@ public class Gebiet {
}
public int getSchlüssel() {
return schlüssel;
return schluessel;
}
public String getName() {
@ -42,7 +41,7 @@ public class Gebiet {
public String toString() {
return "Gebiet{" +
"jahr=" + jahr +
", schlüssel=" + schlüssel +
", schluessel=" + schluessel +
", name='" + name + '\'' +
", gesamtEinkommen=" + gesamtEinkommen +
", durchschnittsEinkommen=" + durchschnittsEinkommen +