Add a semicolon at the end of this statement. 02/95402/2
authoranushadasari <danush10@in.ibm.com>
Tue, 10 Sep 2019 16:43:36 +0000 (22:13 +0530)
committerIttay Stern <ittay.stern@att.com>
Tue, 24 Sep 2019 16:32:49 +0000 (16:32 +0000)
In JavaScript, the semicolon (;) is optional as a statement separator, but omitting semicolons can be confusing, and lead to unexpected results because a semicolon is implicitly inserted at the end of each line.

Issue-ID: VID-607
Change-Id: I74a97be12bc5a110c4afd7f2d3eaf51b0ae707c8
Signed-off-by: anushadasari <danush10@in.ibm.com>
vid-app-common/src/main/webapp/app/vid/scripts/services/aaiService.js

index 0e1beef..d841e29 100755 (executable)
@@ -492,7 +492,7 @@ var AaiService = function ($http, $log, PropertyService, UtilityService, COMPONE
                 successCallbackFunction(lcpCloudRegionTenants);
             }).catch(function (error) {
                 (UtilityService.runHttpErrorHandler(error.data, error.status));
-            })
+            });
         },
         getSubscribers: function (successCallbackFunction) {
             $log
@@ -553,7 +553,7 @@ var AaiService = function ($http, $log, PropertyService, UtilityService, COMPONE
                     catchCallbackFunction();
                 }
                 UtilityService.runHttpErrorHandler(response, status);
-            })
+            });
         },
         getServices: function (successCallbackFunction) {
             $log