From 7ce4d28dd613d26713e29cebe7f8fa4a66bbcd12 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 23 Feb 2009 15:20:35 +0000 Subject: * lib/pathname.rb (Pathname#foreachline): removed wrongly resurrected method. [ruby-dev:38065] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22572 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/pathname.rb | 6 ------ 1 file changed, 6 deletions(-) (limited to 'lib') diff --git a/lib/pathname.rb b/lib/pathname.rb index ce9179a16..e58035c2b 100644 --- a/lib/pathname.rb +++ b/lib/pathname.rb @@ -804,12 +804,6 @@ class Pathname # * IO * IO.foreach(@path, *args, &block) end - # Pathname#foreachline is *obsoleted* at 1.8.1. Use #each_line. - def foreachline(*args, &block) - warn "Pathname#foreachline is obsoleted. Use Pathname#each_line." - each_line(*args, &block) - end - # See IO.read. Returns all data from the file, or the first +N+ bytes # if specified. def read(*args) IO.read(@path, *args) end -- cgit