aboutsummaryrefslogtreecommitdiffstats
path: root/tool/downloader.rb
diff options
context:
space:
mode:
authorduerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-24 09:07:06 +0000
committerduerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-24 09:07:06 +0000
commitb6f2f67cc91ae10feeed4205c0f0be951859ece6 (patch)
tree3226245e4f73cfa94521ae4f11cba3201ba4bbac /tool/downloader.rb
parentd081032d6b49f1df9e32e892573b51968854d07c (diff)
downloadruby-b6f2f67cc91ae10feeed4205c0f0be951859ece6.tar.gz
tool/downloader.rb: Removing unused method
Downloader.download_if_modified_since. (if ever used, just replace with Downloader.download) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47707 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool/downloader.rb')
-rw-r--r--tool/downloader.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/tool/downloader.rb b/tool/downloader.rb
index 12c0e595c2..366738b8ec 100644
--- a/tool/downloader.rb
+++ b/tool/downloader.rb
@@ -84,8 +84,4 @@ class Downloader
rescue => e
raise e.class, "failed to download #{name}\n#{e.message}: #{url}", e.backtrace
end
-
- def self.download_if_modified_since(url, name, dir = nil)
- download(url, name, dir)
- end
end