Skip to content

Commit

Permalink
Use Java 17 style
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardehrenfried committed Sep 24, 2024
1 parent 5ad9cc3 commit d3c2137
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ protected void runApplication(CommandLine cli, String[] originalArgs)
GtfsTransformer transformer = new GtfsTransformer();
transformer.setGtfsInputDirectories(inputPaths);

var outputPath = new File(args.getLast());
var outputPath = new File(args.get(args.size() - 1));
transformer.setOutputDirectory(outputPath);
LOG.info("output path: {}", outputPath);

Expand Down

0 comments on commit d3c2137

Please sign in to comment.