mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
changing != to !==
This commit is contained in:
committed by
Vladimir Enchev
parent
dad1510ce9
commit
cfda63d42b
@@ -57,7 +57,7 @@ export class LayoutBase extends view.CustomLayoutView implements definition.Layo
|
|||||||
}
|
}
|
||||||
|
|
||||||
public removeChildren(): void {
|
public removeChildren(): void {
|
||||||
while (this.getChildrenCount() != 0) {
|
while (this.getChildrenCount() !== 0) {
|
||||||
this.removeChild(this._subViews[this.getChildrenCount() - 1]);
|
this.removeChild(this._subViews[this.getChildrenCount() - 1]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user