[#1817] Create zero-argument constructor for StopSimulationListener

This commit is contained in:
SiboVG 2022-11-13 23:49:39 +01:00
parent 19ee2a83ac
commit bd66055e4a

View File

@ -22,7 +22,11 @@ public class StopSimulationListener extends AbstractSimulationListener {
private long startTime = -1;
private long time = -1;
public StopSimulationListener() {
this(0, 0);
}
public StopSimulationListener(double t, int n) {
stopTime = t;
stopStep = n;