diff options
author | Li Zi <li.zi30@zte.com.cn> | 2018-02-06 01:01:15 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-02-06 01:01:15 +0000 |
commit | af05f8d10f4596547b2888ae0d6d4b90f3c72b4b (patch) | |
tree | b6e2ff13a2b38246e28b7a6bcfc236b35fa7b056 /portal | |
parent | 378b74b36f7acc7cd68bdac170348e62c4c5ceeb (diff) | |
parent | 44ec5d2bced3aa6a4348d939cf427c1eb9d92eb4 (diff) |
Merge "Sonar Major"
Diffstat (limited to 'portal')
-rw-r--r-- | portal/src/main/webapp/extsys/ems/js/commonUtil.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portal/src/main/webapp/extsys/ems/js/commonUtil.js b/portal/src/main/webapp/extsys/ems/js/commonUtil.js index cd56bd1..af09482 100644 --- a/portal/src/main/webapp/extsys/ems/js/commonUtil.js +++ b/portal/src/main/webapp/extsys/ems/js/commonUtil.js @@ -19,7 +19,7 @@ commonUtil.arrayRemove = function (aryInstance, index) { return; } for (var i = 0, n = 0; i < aryInstance.length; i++) { - if (aryInstance[i] != aryInstance[dx]) { + if (aryInstance[i] !== aryInstance[dx]) { aryInstance[n++] = aryInstance[i]; } } |