refactor(common): remove redundant type

This commit is contained in:
Michael George Attard 2016-10-15 22:49:54 +02:00 committed by Igor Minar
parent 33c8948fd3
commit 5f95bf1dd2
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ import {Directive, Input, TemplateRef, ViewContainerRef} from '@angular/core';
*/
@Directive({selector: '[ngIf]'})
export class NgIf {
private _hasView: boolean = false;
private _hasView = false;
constructor(private _viewContainer: ViewContainerRef, private _template: TemplateRef<Object>) {}