fix(compiler): remove deprecated Compiler.ngGetContentSelectors()
(#19347)
BREAKING CHANGE: The method `ngGetConentSelectors()`, deprecated in Angular 4.0, has been removed. Use `ComponentFactory.ngContentSelectors` instead.
This commit is contained in:

committed by
Victor Berchet

parent
2cf52c1b55
commit
f57b7df4d7
@ -57,10 +57,6 @@ export class TestingCompilerImpl implements TestingCompiler {
|
||||
return this._compiler.compileModuleAndAllComponentsAsync(moduleType);
|
||||
}
|
||||
|
||||
getNgContentSelectors(component: Type<any>): string[] {
|
||||
return this._compiler.getNgContentSelectors(component);
|
||||
}
|
||||
|
||||
getComponentFactory<T>(component: Type<T>): ComponentFactory<T> {
|
||||
return this._compiler.getComponentFactory(component);
|
||||
}
|
||||
|
Reference in New Issue
Block a user