From 0077126be7ccae609780afc85e090daa42bfdc2f Mon Sep 17 00:00:00 2001 From: Florian Gross <63071941+flogross89@users.noreply.github.com> Date: Sun, 18 Feb 2024 18:54:03 +0100 Subject: [PATCH] remove facLoader from Navigation (not used) --- fbw-a32nx/src/systems/fmgc/src/navigation/Navigation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fbw-a32nx/src/systems/fmgc/src/navigation/Navigation.ts b/fbw-a32nx/src/systems/fmgc/src/navigation/Navigation.ts index 9404fb1d6339..663bb0c0e291 100644 --- a/fbw-a32nx/src/systems/fmgc/src/navigation/Navigation.ts +++ b/fbw-a32nx/src/systems/fmgc/src/navigation/Navigation.ts @@ -79,7 +79,7 @@ export class Navigation implements NavigationProvider { facility: null, })); - constructor(private flightPlanService: FlightPlanService, private readonly facLoader?: FacilityLoader) { + constructor(private flightPlanService: FlightPlanService) { this.requiredPerformance = new RequiredPerformance(this.flightPlanService); this.navaidSelectionManager = new NavaidSelectionManager(this.flightPlanService, this); this.landingSystemSelectionManager = new LandingSystemSelectionManager(this.flightPlanService, this);