Skip to content

Commit

Permalink
Review feedback - removed some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
frankkopp committed Dec 28, 2022
1 parent 8dbf746 commit 7ff8f95
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/fmgc/src/flightplanning/FlightPlanAsoboSync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ export class FlightPlanAsoboSync {
this.fpChecksum = plan.checksum;
}
Coherent.call('RECOMPUTE_ACTIVE_WAYPOINT_INDEX')
.then(() => console.log('[FP SAVE] Setting Active Waypoint... SUCCESS'))
// .then(() => console.log('[FP SAVE] Setting Active Waypoint... SUCCESS'))
.catch((e) => console.log('[FP SAVE] Setting Active Waypoint... FAILED: ', e));
}));
});
Expand Down
1 change: 0 additions & 1 deletion src/fmgc/src/flightplanning/ManagedFlightPlan.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,6 @@ export class ManagedFlightPlan {
private computeWaypointEta(distance: number, preComputedTime? :number) {
const eta = preComputedTime ?? this.computeWaypointTime(distance);
const utcTime = SimVar.GetGlobalVarValue('ZULU TIME', 'seconds');
// console.log(`BRUHEGG: ${utcTime}, BRUHHH #2: ${eta}`);
return eta + utcTime;
}

Expand Down

0 comments on commit 7ff8f95

Please sign in to comment.