This commit is contained in:
Sabine Gubitz 2022-12-09 14:49:09 +01:00
parent 19214584c3
commit 14e15a68ce
2 changed files with 1 additions and 2 deletions

View File

@ -15,7 +15,7 @@ import java.util.List;
public class GebietsDatei implements GebietsQuelle{ public class GebietsDatei implements GebietsQuelle{
private ArrayList<Gebiet> gebiete = new ArrayList<>(); private ArrayList<Gebiet> gebiete = new ArrayList<>();
public void GebietsDatei (String dateiname){ public GebietsDatei (String dateiname){
Path pfad = Paths.get(dateiname); Path pfad = Paths.get(dateiname);
try { try {

View File

@ -7,6 +7,5 @@ import java.util.List;
*/ */
public interface GebietsQuelle { public interface GebietsQuelle {
void GebietsDatei (String dateiname);
List<Gebiet> getGebiete(); List<Gebiet> getGebiete();
} }