Skip to content
Snippets Groups Projects

Bug #253 mobility hosts hover to origin after arriving at an event

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
48 48 * @param nodeDestination
49 49 */
50 50 public void setNextRoute(Coord nodeLocation, Coord nodeDestination) {
51 from = nodeLocation.clone();
52 to = nodeDestination.clone();
51 if (nodeLocation != null) {
52 from = nodeLocation.clone();
53 }
54 else {
  • 364 364 * effectively leading to an immediate change to whatever movement model is set directly after calling this method.
    365 365 */
    366 366 private void setMovementAsForcefullySwitched() {
    367 justChanged = true;
    367 if (host.getPath() != null) {
  • 48 48 * @param nodeDestination
    49 49 */
    50 50 public void setNextRoute(Coord nodeLocation, Coord nodeDestination) {
  • 583 583 return this.getAddress() - h.getAddress();
    584 584 }
    585 585
    586 /**
    587 * Sets the host's path (only for JUnit testing!!)
    588 * @param p Path to be set
    589 */
    590 public void setPath(Path p) {
  • Ghost User assigned to @bheymann

    assigned to @bheymann

  • added Needs Changes and removed Needs Review labels

  • Nils Weidmann added 118 commits

    added 118 commits

    Compare with previous version

  • Ghost User @ghost started a thread on the diff
  • .metadata/.log 0 → 100644
    1
    2 !ENTRY org.eclipse.ui.ide 4 4 2017-05-31 14:07:05.384
  • Nils Weidmann added 1 commit

    added 1 commit

    • e0134bd7 - Change visibility of one method to make simulator compilable again

    Compare with previous version

  • Nils Weidmann added 282 commits

    added 282 commits

    Compare with previous version

  • Nils Weidmann added 1 commit

    added 1 commit

    • 3305a732 - Manually insert new methods to solve the rest of the merge conflict

    Compare with previous version

  • Please register or sign in to reply
    Loading