From e6021a1be228d05ebd2657ff311664e542af5304 Mon Sep 17 00:00:00 2001 From: ayumin Date: Mon, 16 Jul 2012 08:15:05 +0000 Subject: * lib/fileutils.rb (uptodate?): remove useless parameter. patched by Oscar Del Ben.[Bug #6708][ruby-core:46256] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36400 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/fileutils.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'lib/fileutils.rb') diff --git a/lib/fileutils.rb b/lib/fileutils.rb index ff317ded21..1303b963fe 100644 --- a/lib/fileutils.rb +++ b/lib/fileutils.rb @@ -221,9 +221,7 @@ public # FileUtils.uptodate?('hello.o', %w(hello.c hello.h)) or \ # system 'make hello.o' # - def uptodate?(new, old_list, options = nil) - raise ArgumentError, 'uptodate? does not accept any option' if options - + def uptodate?(new, old_list) return false unless File.exist?(new) new_time = File.mtime(new) old_list.each do |old| -- cgit v1.2.3