diff options
author | anushadasari <danush10@in.ibm.com> | 2019-08-13 17:00:25 +0530 |
---|---|---|
committer | anushadasari <danush10@in.ibm.com> | 2019-08-13 17:00:47 +0530 |
commit | 5957a80435aebf3d684b97e9e28e73e89fb2f9ac (patch) | |
tree | aac206338549c7b541a6fbee93423a62fb548ced | |
parent | fa7374fa4e05f2a9bb8fe0ac85fb43a8c61c20a0 (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-568
Change-Id: Id89534f4fbd326ebcbe12857bce7e2d69bf73dfd
Signed-off-by: anushadasari <danush10@in.ibm.com>
-rwxr-xr-x | vid-app-common/src/main/webapp/app/vid/scripts/controller/aaiSubscriberController.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/controller/aaiSubscriberController.js b/vid-app-common/src/main/webapp/app/vid/scripts/controller/aaiSubscriberController.js index 072adf305..e66b8ff6c 100755 --- a/vid-app-common/src/main/webapp/app/vid/scripts/controller/aaiSubscriberController.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/controller/aaiSubscriberController.js @@ -531,7 +531,7 @@ appDS2.controller("aaiSubscriberController", ["COMPONENT", "FIELD", "PARAMETER", $scope.isPermitted = first.isPermitted;
deferred.resolve(first.isPermitted);
} else {
- deferred.reject("some error while resolveIfIsPermitted")
+ deferred.reject("some error while resolveIfIsPermitted");
}
});
|