fixed Constructor

This commit is contained in:
Malte Schulze Hobeling 2022-12-06 14:45:25 +01:00
parent da5bcc93bf
commit 7ca888121d

View File

@ -4,7 +4,7 @@ import java.util.List;
public class GebietsListe {
private List<GebietMock> gebietListe = new ArrayList<>();
public GebietsListe(){
public GebietsListe(List<Gebiet> gebiete){
this.gebietListe = gebietListe;
}