diff options
author | anushadasari <danush10@in.ibm.com> | 2019-07-22 17:35:04 +0530 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2019-07-25 13:38:33 +0000 |
commit | db624f8bc59f3b1dca5822dbc26e1431a41a643c (patch) | |
tree | 2066cb7160dc249904bcdfb2d0388888fc2c0153 /ccsdk-app-overlay/src/main/webapp | |
parent | 5e44bf4c13b92fd35371c7ea4471e07b88006c61 (diff) |
sonar fix- 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: CCSDK-1515
Change-Id: I64e50083b9b0fe40fa0ba32723e30adb0dbce08e
Signed-off-by: anushadasari <danush10@in.ibm.com>
Diffstat (limited to 'ccsdk-app-overlay/src/main/webapp')
-rw-r--r-- | ccsdk-app-overlay/src/main/webapp/app/ccsdk/cloudify/blueprint-controllers.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ccsdk-app-overlay/src/main/webapp/app/ccsdk/cloudify/blueprint-controllers.js b/ccsdk-app-overlay/src/main/webapp/app/ccsdk/cloudify/blueprint-controllers.js index cb6e712..cd00653 100644 --- a/ccsdk-app-overlay/src/main/webapp/app/ccsdk/cloudify/blueprint-controllers.js +++ b/ccsdk-app-overlay/src/main/webapp/app/ccsdk/cloudify/blueprint-controllers.js @@ -207,7 +207,7 @@ appDS2.controller('blueprintTableController', function( $log.error('BlueprintService.deleteBlueprint failed: ' + error); alert('Service failed to delete blueprint:\n' + error); }); - }) + }); }; // Populate the table on load. Note that the b2b selector code |