Major- Remove unused function parameter "response" 85/92185/4
authoranushadasari <danush10@in.ibm.com>
Mon, 29 Jul 2019 10:18:25 +0000 (15:48 +0530)
committerDan Timoney <dtimoney@att.com>
Tue, 30 Jul 2019 12:53:47 +0000 (12:53 +0000)
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>
ccsdk-app-overlay/src/main/webapp/app/ccsdk/cloudify/blueprint-controllers.js

index 51a7409..d5d124b 100644 (file)
@@ -100,7 +100,7 @@ appDS2.controller('blueprintTableController', function(
                                }
                        }
                });
-               modalInstance.result.then(function(response) {
+               modalInstance.result.then(function() {
                        // No response.
                });
        };