summaryrefslogtreecommitdiff
path: root/lib/chef/provider/remote_file/http.rb
diff options
context:
space:
mode:
authorsersut <serdar@opscode.com>2013-06-03 13:29:08 -0700
committersersut <serdar@opscode.com>2013-06-03 13:30:09 -0700
commitc1aba2676136a81da712f7772d020ed253b89392 (patch)
tree25cadebd7653eced1c641ddb360bce5769ffe3e9 /lib/chef/provider/remote_file/http.rb
parent7fee9a0121fc56228a0214390b521a11894ef601 (diff)
downloadchef-c1aba2676136a81da712f7772d020ed253b89392.tar.gz
Remove unused class RemoteFile::Result.
Diffstat (limited to 'lib/chef/provider/remote_file/http.rb')
-rw-r--r--lib/chef/provider/remote_file/http.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/provider/remote_file/http.rb b/lib/chef/provider/remote_file/http.rb
index 855041f91e..6ffd83f438 100644
--- a/lib/chef/provider/remote_file/http.rb
+++ b/lib/chef/provider/remote_file/http.rb
@@ -20,7 +20,6 @@
require 'chef/rest'
require 'chef/digester'
require 'chef/provider/remote_file'
-require 'chef/provider/remote_file/result'
require 'chef/provider/remote_file/cache_control_data'
class Chef
@@ -69,7 +68,8 @@ class Chef
raise e
end
end
- return Chef::Provider::RemoteFile::Result.new(tempfile, cache_control_data.etag, cache_control_data.mtime)
+
+ tempfile
end
private