From cbdc87c1712d671d7b421c83475954cfc9e19ebf Mon Sep 17 00:00:00 2001 From: knu Date: Sun, 4 Mar 2007 15:03:11 +0000 Subject: merge a cosmetic change git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_6@11989 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/fileutils.rb | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/fileutils.rb b/lib/fileutils.rb index cf0c91b0a..3fdb6cbfe 100644 --- a/lib/fileutils.rb +++ b/lib/fileutils.rb @@ -1020,11 +1020,7 @@ module FileUtils created = nocreate = options[:nocreate] t = options[:mtime] if options[:verbose] - fu_output_message "touch #{ - nocreate ? ' -c' : '' - }#{ - t ? t.strftime(' -t %Y%m%d%H%M.%S') : '' - }#{list.join ' '}" + fu_output_message "touch #{nocreate ? ' -c' : ''}#{t ? t.strftime(' -t %Y%m%d%H%M.%S') : ''}#{list.join ' '}" end return if options[:noop] list.each do |path| -- cgit