From c844e1c87374b18ee634a06a5325518631607c90 Mon Sep 17 00:00:00 2001 From: Lamont Granquist Date: Tue, 12 Jan 2016 08:22:09 -0800 Subject: chefstyle: fix Lint/StringConversionInInterpolation useless use of `"#{foo.to_s}"` --- lib/chef/resource_definition.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/chef/resource_definition.rb') diff --git a/lib/chef/resource_definition.rb b/lib/chef/resource_definition.rb index cffabb6786..43350dda2b 100644 --- a/lib/chef/resource_definition.rb +++ b/lib/chef/resource_definition.rb @@ -62,7 +62,7 @@ class Chef end def to_s - "#{name.to_s}" + "#{name}" end end end -- cgit v1.2.1