Sonar Major 65/30265/1
authorPrasadNaidu <RV00493633@techmahindra.com>
Mon, 5 Feb 2018 12:51:18 +0000 (18:21 +0530)
committerPrasadNaidu <RV00493633@techmahindra.com>
Mon, 5 Feb 2018 12:51:41 +0000 (18:21 +0530)
Replace == with ===
commonUtil.js:L89

Sonar Link : https://sonar.onap.org/component_issues/index?id=org.onap.aai.esr-gui%3Aaai-esr-gui#resolved=false|severities=MAJOR|assignees=PrasadNaidu
Location : src/main/webapp/extsys/ems/js/commonUtil.jsChange-Id: I4360ba702951cab1daa1bb92d57f43a3fc1389a8

Change-Id: I9df044d1e18c1cd58306ac351eaaf2ddc105f113
Issue-ID: AAI-731
Signed-off-by: PrasadNaidu <RV00493633@techmahindra.com>
portal/src/main/webapp/extsys/ems/js/commonUtil.js

index cd56bd1..3604c4e 100644 (file)
@@ -86,7 +86,7 @@ commonUtil.registerCometdMessage = function (url, channel, callback) {
 }
 
 commonUtil.format = function () {
-    if (arguments.length == 0) {
+    if (arguments.length === 0) {
         return null;
     }
     var str = arguments[0];