Add a semicolon at the end of this statement. 63/95563/2
authoranushadasari <danush10@in.ibm.com>
Thu, 12 Sep 2019 11:00:49 +0000 (16:30 +0530)
committerIttay Stern <ittay.stern@att.com>
Tue, 24 Sep 2019 16:36:22 +0000 (16:36 +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: Id3fd3e7baea856e8aab4c5c7c509a6c00bb44ced
Signed-off-by: anushadasari <danush10@in.ibm.com>
vid-app-common/src/main/webapp/app/vid/scripts/services/deleteResumeService.js

index c13c721..a50fb25 100644 (file)
@@ -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",