style: remove empty comments (#23404)

PR Close #23404
This commit is contained in:
swseverance
2018-04-16 21:27:16 -04:00
committed by Igor Minar
parent 72eab4d254
commit fe3679a356
32 changed files with 12 additions and 99 deletions

View File

@ -64,9 +64,6 @@ export abstract class ComponentRef<C> {
abstract onDestroy(callback: Function): void;
}
/**
*
*/
export abstract class ComponentFactory<C> {
abstract get selector(): string;
abstract get componentType(): Type<any>;

View File

@ -33,9 +33,6 @@ class _NullComponentFactoryResolver implements ComponentFactoryResolver {
}
}
/**
*
*/
export abstract class ComponentFactoryResolver {
static NULL: ComponentFactoryResolver = new _NullComponentFactoryResolver();
abstract resolveComponentFactory<T>(component: Type<T>): ComponentFactory<T>;

View File

@ -9,10 +9,6 @@
import {ApplicationRef} from '../application_ref';
import {ChangeDetectorRef} from '../change_detection/change_detector_ref';
/**
*
*/
export abstract class ViewRef extends ChangeDetectorRef {
/**
* Destroys the view and all of the data structures associated with it.