Skip to content

Commit

Permalink
Logging fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal Kit committed Jun 24, 2014
1 parent 1dc6766 commit 8eee1ef
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ public void abort(double now) {
}

public void endActivityAndComputeNextState(double now) {
if (route == null || route.isEmpty())
return;
this.simulation.getEventsManager().processEvent(
this.simulation
.getEventsManager()
Expand Down Expand Up @@ -100,8 +102,7 @@ public void setRoute(List<Id> route) {
}

public Id getCurrentLinkId() {
// Log.i(id.toString() + " getCurrentLinkId " +
// currentLinkId.toString());
//System.out.println(id.toString() + " getCurrentLinkId " + currentLinkId.toString());
return this.currentLinkId;
}

Expand Down

0 comments on commit 8eee1ef

Please sign in to comment.