Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
use (existing) accessors to make protected fields private
[simgrid.git] / src / surf / surf_interface.cpp
index c8fae21..837bf97 100644 (file)
@@ -705,8 +705,7 @@ double Action::getStartTime()
 
 double Action::getFinishTime()
 {
-  /* keep the function behavior, some models (cpu_ti) change the finish time before the action end */
-  return remains_ <= 0 ? finishTime_ : -1;
+  return finishTime_;
 }
 
 void Action::setData(void* data)