From 171a79d04f4aec17518269fb2786f106a7a9fb24 Mon Sep 17 00:00:00 2001 From: Pete Bacon Darwin Date: Fri, 31 Jan 2020 21:07:58 +0000 Subject: [PATCH] refactor(ngcc): remove unused code (#35079) PR Close #35079 --- packages/compiler-cli/ngcc/src/main.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/compiler-cli/ngcc/src/main.ts b/packages/compiler-cli/ngcc/src/main.ts index 8e9ba252fe..c925df35aa 100644 --- a/packages/compiler-cli/ngcc/src/main.ts +++ b/packages/compiler-cli/ngcc/src/main.ts @@ -125,8 +125,6 @@ export type AsyncNgccOptions = Omit& {async: true}; */ export type NgccOptions = AsyncNgccOptions | SyncNgccOptions; -const EMPTY_GRAPH = new DepGraph(); - /** * This is the main entry-point into ngcc (aNGular Compatibility Compiler). *