Commit 7fdc7902 authored by Tobias Meuser's avatar Tobias Meuser
Browse files

Removed unused constructor

parent 8f8886af
......@@ -86,6 +86,7 @@ public class VehicleMovementModel implements MovementModel, EventHandler, Future
private String sumoIntersections;
/**
* Constructor for the movement model using the sumo TraCI API
* @param timeBetweenMoveOperations The time between two movement operations.
......@@ -137,17 +138,6 @@ public class VehicleMovementModel implements MovementModel, EventHandler, Future
this.height = height;
}
/**
* Constructor for the movement model using the sumo TraCI API
* @param timeBetweenMoveOperations The time between two movement operations.
* @param sumoExe The path to the executable of sumo
* @param sumoConfigFile The path to the configuration file of the scenario
*/
@XMLConfigurableConstructor({ "timeBetweenMoveOperations", "sumoExe", "sumoConfigFile" })
public VehicleMovementModel(long timeBetweenMoveOperations, String sumoExe, String sumoConfigFile) {
this(timeBetweenMoveOperations, sumoExe, sumoConfigFile, "10000", "10000", "15000", "15000");
}
/**
* Adding an additional component to be moved by this movement model
* @param comp The component to be added.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment