Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
tschlenther committed Jan 18, 2024
1 parent e18f31d commit 7829d46
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public Integer call() throws Exception {

for (Vehicle vehicle : vehicles.getVehicles().values()) {
//only count car vehicles, i.e. do not count bikes, freight vehicles or ride vehicles.
if(vehicle.getType().getId().toString().equals("car")){
if (vehicle.getType().getId().toString().equals("car")){
List<VehicleParkingData> dummyList = new ArrayList<>();
parkingTracker.put(vehicle.getId(), dummyList);
}
Expand Down

0 comments on commit 7829d46

Please sign in to comment.