Remove unnecessary shadowing of variable
Project: http://git-wip-us.apache.org/repos/asf/buildr/repo Commit: http://git-wip-us.apache.org/repos/asf/buildr/commit/914744b7 Tree: http://git-wip-us.apache.org/repos/asf/buildr/tree/914744b7 Diff: http://git-wip-us.apache.org/repos/asf/buildr/diff/914744b7 Branch: refs/heads/master Commit: 914744b7c4d0a9cec21093a1313afb5c3b7f4cc5 Parents: e4976a7 Author: Peter Donald <[email protected]> Authored: Mon Oct 9 18:15:19 2017 +1100 Committer: Peter Donald <[email protected]> Committed: Mon Oct 9 18:15:19 2017 +1100 ---------------------------------------------------------------------- lib/buildr/ide/idea.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/buildr/blob/914744b7/lib/buildr/ide/idea.rb ---------------------------------------------------------------------- diff --git a/lib/buildr/ide/idea.rb b/lib/buildr/ide/idea.rb index 90b1ed1..7340a53 100644 --- a/lib/buildr/ide/idea.rb +++ b/lib/buildr/ide/idea.rb @@ -1001,7 +1001,7 @@ module Buildr #:nodoc: xml.option(:name => 'USE_SUPER_DEV_MODE', :value => super_dev) xml.option(:name => 'SHELL_PARAMETERS', :value => shell_parameters) if shell_parameters - xml.RunnerSettings(:RunnerId => 'Debug') do |xml| + xml.RunnerSettings(:RunnerId => 'Debug') do xml.option(:name => 'DEBUG_PORT', :value => '') xml.option(:name => 'TRANSPORT', :value => 0) xml.option(:name => 'LOCAL', :value => true)
