Skip to content

Commit

Permalink
Merge pull request #6 from chennanxu/master
Browse files Browse the repository at this point in the history
fix for issue #2
  • Loading branch information
knightcode authored Sep 4, 2018
2 parents 7669e74 + cb74b36 commit 863e12f
Show file tree
Hide file tree
Showing 2 changed files with 275 additions and 275 deletions.
4 changes: 2 additions & 2 deletions core/DTNHost.java
Original file line number Diff line number Diff line change
Expand Up @@ -151,11 +151,11 @@ public ModuleCommunicationBus getComBus() {
* @param con The connection object whose state changed
*/
public void connectionUp(Connection con) {
this.router.connectionUp(con);
this.router.changedConnection(con);
}

public void connectionDown(Connection con) {
this.router.connectionDown(con);
this.router.changedConnection(con);
}

/**
Expand Down
Loading

0 comments on commit 863e12f

Please sign in to comment.