removed unnecessary print

This commit is contained in:
Djairo Hougee 2024-05-05 08:28:38 +02:00
parent 6637ec7c18
commit 7d4fde3485
1 changed files with 0 additions and 2 deletions

View File

@ -11,8 +11,6 @@ TimerCallbackCommand* TimerCallbackCommand::New(Program *program) {
} }
void TimerCallbackCommand::Execute(vtkObject* caller, unsigned long eventId, void* vtkNotUsed(callData)) { void TimerCallbackCommand::Execute(vtkObject* caller, unsigned long eventId, void* vtkNotUsed(callData)) {
cout << this->time << " " << this->maxTime << endl;
this->time += this->dt; this->time += this->dt;
if (this->time >= this->maxTime) { if (this->time >= this->maxTime) {