changing != to !==

This commit is contained in:
Matt Donovan
2015-06-08 17:16:12 -05:00
committed by Vladimir Enchev
parent dad1510ce9
commit cfda63d42b

View File

@@ -57,7 +57,7 @@ export class LayoutBase extends view.CustomLayoutView implements definition.Layo
}
public removeChildren(): void {
while (this.getChildrenCount() != 0) {
while (this.getChildrenCount() !== 0) {
this.removeChild(this._subViews[this.getChildrenCount() - 1]);
}
}