From: anushadasari Date: Thu, 12 Sep 2019 11:00:49 +0000 (+0530) Subject: Add a semicolon at the end of this statement. X-Git-Tag: 6.0.1~282 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=e9cb05ed8984671709aa1876d798e9136a7cb45f;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: Id3fd3e7baea856e8aab4c5c7c509a6c00bb44ced Signed-off-by: anushadasari --- diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/services/deleteResumeService.js b/vid-app-common/src/main/webapp/app/vid/scripts/services/deleteResumeService.js index c13c721f4..a50fb2501 100644 --- a/vid-app-common/src/main/webapp/app/vid/scripts/services/deleteResumeService.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/services/deleteResumeService.js @@ -382,7 +382,7 @@ var DeleteResumeService = function($log, AaiService, AsdcService, DataService, }; } return requestDetails; - } + }; var getLcpRegion = function() { var cloudRegionTenantList = DataService.getCloudRegionTenantList(); @@ -520,8 +520,8 @@ var DeleteResumeService = function($log, AaiService, AsdcService, DataService, getMsoRequestDetails : getMsoRequestDetails, getMsoUrl : getMsoUrl, isMacro : DataService.getMacro() - } -} + }; +}; appDS2.factory("DeleteResumeService", [ "$log", "AaiService", "AsdcService", "DataService", "ComponentService", "COMPONENT", "FIELD",