fix: Remove qml M126 warning 34/22534/1
authorLi Xiaoming <lixm.fnst@cn.fujitsu.com>
Fri, 27 Sep 2019 13:01:49 +0000 (21:01 +0800)
committerLi Xiaoming <lixm.fnst@cn.fujitsu.com>
Fri, 27 Sep 2019 13:01:49 +0000 (21:01 +0800)
Message:
== and != may perform type coercion, use === or !== to avoid it.

Description:
The non-strict equality comparison is allowed to convert its arguments
to a common type. That can lead to unexpected results such as
' \t\r\n' == 0 being true. Use the strict equality operators === and
!== and be explicit about conversions you require.

Bug-AGL: SPEC-2814

Change-Id: I374749e71705b24eb793e0ba8a5efacc81ea40de
Signed-off-by: Li Xiaoming <lixm.fnst@cn.fujitsu.com>

No differences found