aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoranushadasari <danush10@in.ibm.com>2019-07-29 15:48:25 +0530
committerDan Timoney <dtimoney@att.com>2019-07-30 12:53:47 +0000
commit78e935b3e0e22b08890883f517232272b8348d72 (patch)
treec44ecf11a36c613e48475afff96da1ce05a2e00f
parent3bd28cf1c70fcdd482a0308fc449ac71d3963781 (diff)
Major- Remove unused function parameter "response"
Unused parameters are misleading. Whatever the values passed to such parameters,the behavior will be the same. Issue-ID: CCSDK-1555 Change-Id: I5a90b7650c7291ca5d4d64943570f72c44b96c08 Signed-off-by: anushadasari <danush10@in.ibm.com>
-rw-r--r--ccsdk-app-overlay/src/main/webapp/app/ccsdk/cloudify/blueprint-controllers.js2
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 51a7409..d5d124b 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
@@ -100,7 +100,7 @@ appDS2.controller('blueprintTableController', function(
}
}
});
- modalInstance.result.then(function(response) {
+ modalInstance.result.then(function() {
// No response.
});
};