Skip to content

Commit

Permalink
checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
tschlenther committed Jun 3, 2024
1 parent 6668712 commit 92b959f
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@
* Plot DRT stopping task (idle and pickup/drop-off stops) on the map, with start time and end time.
* Please specify the output directory of the DRT in the input argument.
*/
public class PlotDrtStoppingTasks {
public final class PlotDrtStoppingTasks {

private PlotDrtStoppingTasks() {}

public static void main(String[] args) throws IOException {
new DrtVehicleStoppingTaskWriter(Path.of(args[0])).run();
}

}

0 comments on commit 92b959f

Please sign in to comment.