fix(common): do not reference deprecated classes in providers (#14523) (#14523)

References to `NgFor` are now an alias for `NgForOf` instead of a
derived class.

Fixes #14521
This commit is contained in:
Chuck Jazdzewski
2017-02-23 17:23:56 -08:00
committed by Igor Minar
parent c53621be8e
commit a23634dfd0
5 changed files with 27 additions and 87 deletions
@@ -29,12 +29,3 @@ import {COMMON_PIPES} from './pipes/index';
})
export class CommonModule {
}
/**
* A module to contain deprecated directives.
*
* @deprecated
*/
@NgModule({declarations: [COMMON_DEPRECATED_DIRECTIVES], exports: [COMMON_DEPRECATED_DIRECTIVES]})
export class DeprecatedCommonModule {
}