summaryrefslogtreecommitdiff
path: root/lib/pathname.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-23 15:20:35 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-23 15:20:35 +0000
commitb47b9fbb874c88b07fffa8f5029dfdcc3f06b616 (patch)
tree5fcc88f493af271bdc4ab5c7e61f370e7ec1331b /lib/pathname.rb
parent605cd65904343ec13049820ed6c1b0335ddbc69e (diff)
* lib/pathname.rb (Pathname#foreachline): removed wrongly
resurrected method. [ruby-dev:38065] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22572 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/pathname.rb')
-rw-r--r--lib/pathname.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/pathname.rb b/lib/pathname.rb
index ce9179a16a..e58035c2be 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 <tt>IO.read</tt>. Returns all data from the file, or the first +N+ bytes
# if specified.
def read(*args) IO.read(@path, *args) end