refactor(ngcc): remove unused code (#35079)

PR Close #35079
This commit is contained in:
Pete Bacon Darwin 2020-01-31 21:07:58 +00:00 committed by Misko Hevery
parent 6d11a81994
commit 171a79d04f

View File

@ -125,8 +125,6 @@ export type AsyncNgccOptions = Omit<SyncNgccOptions, 'async'>& {async: true};
*/ */
export type NgccOptions = AsyncNgccOptions | SyncNgccOptions; export type NgccOptions = AsyncNgccOptions | SyncNgccOptions;
const EMPTY_GRAPH = new DepGraph<EntryPoint>();
/** /**
* This is the main entry-point into ngcc (aNGular Compatibility Compiler). * This is the main entry-point into ngcc (aNGular Compatibility Compiler).
* *