summaryrefslogtreecommitdiff
path: root/lib/chef/user.rb
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2015-02-19 13:36:40 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2015-02-23 10:44:58 -0800
commit0e01c33eb861fc31fc63e15b9c59173e373aec2d (patch)
tree9cb1a79d8f7aa3f062f300c19038f237c4561481 /lib/chef/user.rb
parent5c6ef532630f3d08325fd0e1635d2b6dd6057a31 (diff)
downloadchef-0e01c33eb861fc31fc63e15b9c59173e373aec2d.tar.gz
fixes Lint/UselessAccessModifier
Diffstat (limited to 'lib/chef/user.rb')
-rw-r--r--lib/chef/user.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/user.rb b/lib/chef/user.rb
index 6569a97f00..42fa6b5fa1 100644
--- a/lib/chef/user.rb
+++ b/lib/chef/user.rb
@@ -165,8 +165,6 @@ class Chef
Chef::User.from_hash(response)
end
- private
-
# Gross. Transforms an API response in the form of:
# [ { "user" => { "username" => USERNAME }}, ...]
# into the form
@@ -179,5 +177,7 @@ class Chef
end
new_response
end
+
+ private_class_method :transform_ohc_list_response
end
end