diff options
author | anushadasari <danush10@in.ibm.com> | 2019-09-11 11:51:41 +0530 |
---|---|---|
committer | Ittay Stern <ittay.stern@att.com> | 2019-09-24 16:34:46 +0000 |
commit | c7385d8f78dd2fcef65081639510cd3b125ec288 (patch) | |
tree | a33d92233c0fe6e07422713807754ae6d65f8942 | |
parent | 77b108c37264af0e906236f00491bbce3eba2244 (diff) |
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 <danush10@in.ibm.com>
-rwxr-xr-x | vid-app-common/src/main/webapp/app/vid/scripts/services/dataService.js | 4 |
1 files changed, 2 insertions, 2 deletions
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 ]);
|