summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas DUPEUX <nicolas.dupeux@arkea.com>2014-10-07 21:29:08 +0200
committerNicolas DUPEUX <nicolas.dupeux@arkea.com>2014-10-07 21:29:08 +0200
commit55b380d1a5b2356cc84a4618249d6581f6e248ba (patch)
tree8de97a5e2d95aa154916892273f3e1123056533f
parentf04307206eb91e505761f8ef933f0932b7df99c9 (diff)
downloadchef-55b380d1a5b2356cc84a4618249d6581f6e248ba.tar.gz
Remove commented code
-rw-r--r--lib/chef/knife/core/status_presenter.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/chef/knife/core/status_presenter.rb b/lib/chef/knife/core/status_presenter.rb
index 2cd093d240..3298d5e4ac 100644
--- a/lib/chef/knife/core/status_presenter.rb
+++ b/lib/chef/knife/core/status_presenter.rb
@@ -95,7 +95,6 @@ class Chef
def summarize(list)
summarized=''
list.each do |data|
- #if data.kind_of?(Chef::Node)
node = data
# special case ec2 with their split horizon whatsis.
ip = (node[:ec2] && node[:ec2][:public_ipv4]) || node[:ipaddress]
@@ -131,8 +130,6 @@ class Chef
end
summarized=summarized + line_parts.join(', ') + ".\n"
- #else
- # super
end
summarized
end