From: anushadasari Date: Wed, 11 Sep 2019 06:21:41 +0000 (+0530) Subject: Add a semicolon at the end of this statement. X-Git-Tag: 6.0.1~283 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F59%2F95459%2F2;p=vid.git Add a semicolon at the end of this statement. 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: I45637083e88ac2e1c4cb27519a3116f2f5f792e8 Signed-off-by: anushadasari --- diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/services/dataService.js b/vid-app-common/src/main/webapp/app/vid/scripts/services/dataService.js index 84413f890..95bdb3a14 100755 --- a/vid-app-common/src/main/webapp/app/vid/scripts/services/dataService.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/services/dataService.js @@ -43,7 +43,7 @@ var DataService = function($log, DataService) { return { cloudOwner: cloudRegionTenant.cloudOwner, cloudRegionId: cloudRegionTenant.cloudRegionId - } + }; }, getGlobalCustomerId : function() { return _this.globalCustomerId; @@ -405,7 +405,7 @@ var DataService = function($log, DataService) { _this.owningEntityProperties = properties; } - } + }; }; appDS2.factory("DataService", [ "$log", DataService ]);