Skip to content

Commit

Permalink
removed deprecated csv parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
hzoerner committed Jul 14, 2023
1 parent e6967e6 commit b4eac8c
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ public class CreateCountsFromVMZ implements MATSimAppCommand {
@CommandLine.Option(names = "--excel", description = "Path to excel file containing the counts")
private Path excel;

@CommandLine.Option(names = "--csv", description = "Path to csv file with the mapping")
private Path csv;

@CommandLine.Option(names = "--network", description = "Path to network", required = true)
private Path network;

Expand All @@ -73,7 +70,6 @@ public static void main(String[] args) {
public Integer call() throws Exception {

readExcelFile(excel.toString());
// readMappingFile(csv.toString());
matchWithNetwork(network);
createCountsFile(output);

Expand Down

0 comments on commit b4eac8c

Please sign in to comment.