fix: remove print
This commit is contained in:
		@@ -15,8 +15,6 @@ public class GebietsDatei {
 | 
				
			|||||||
        try {
 | 
					        try {
 | 
				
			||||||
            Files.readAllLines(Paths.get(dateiName)).forEach(line -> {
 | 
					            Files.readAllLines(Paths.get(dateiName)).forEach(line -> {
 | 
				
			||||||
                String[] parts = line.split(";");
 | 
					                String[] parts = line.split(";");
 | 
				
			||||||
                System.out.println(parts[0]);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                gebiete.add(new Gebiet(Integer.parseInt(parts[0]), Integer.parseInt(parts[1]), parts[2], (parts[3].equals("-")) ? 0 : Long.parseLong(parts[3]), (parts[4].equals("-")) ? 0 : Integer.parseInt(parts[4])));
 | 
					                gebiete.add(new Gebiet(Integer.parseInt(parts[0]), Integer.parseInt(parts[1]), parts[2], (parts[3].equals("-")) ? 0 : Long.parseLong(parts[3]), (parts[4].equals("-")) ? 0 : Integer.parseInt(parts[4])));
 | 
				
			||||||
            });
 | 
					            });
 | 
				
			||||||
        } catch (Exception e) {
 | 
					        } catch (Exception e) {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user