summaryrefslogtreecommitdiff
path: root/lib/chef/file_content_management/deploy.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/file_content_management/deploy.rb')
-rw-r--r--lib/chef/file_content_management/deploy.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/file_content_management/deploy.rb b/lib/chef/file_content_management/deploy.rb
index 1e3ae55c21..797dfd6cd1 100644
--- a/lib/chef/file_content_management/deploy.rb
+++ b/lib/chef/file_content_management/deploy.rb
@@ -27,9 +27,9 @@ class Chef
class Deploy
def self.strategy(atomic_update)
if atomic_update
- Chef::Platform.windows? ? MvWindows.new() : MvUnix.new()
+ Chef::Platform.windows? ? MvWindows.new : MvUnix.new
else
- Cp.new()
+ Cp.new
end
end
end