diff options
author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-12-19 18:55:32 +0000 |
---|---|---|
committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-12-19 18:55:32 +0000 |
commit | 30002b539608123760fcebc68d4f45bcd3c46ffa (patch) | |
tree | e654d14974cbe9e7870d36c6e90cd2325cf8203a | |
parent | 3dd019fde23098f7f94adcd2fc600a706cbf7c8d (diff) | |
download | ruby-30002b539608123760fcebc68d4f45bcd3c46ffa.tar.gz ruby-30002b539608123760fcebc68d4f45bcd3c46ffa.tar.xz ruby-30002b539608123760fcebc68d4f45bcd3c46ffa.zip |
Delete final.rb, which was obsoleted long ago.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3176 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | lib/README | 1 | ||||
-rw-r--r-- | lib/cgi/session.rb | 1 | ||||
-rw-r--r-- | lib/final.rb | 4 |
4 files changed, 5 insertions, 6 deletions
@@ -1,3 +1,8 @@ +Fri Dec 20 03:53:01 2002 Akinori MUSHA <knu@iDaemons.org> + + * lib/README, lib/cgi/final.rb, lib/cgi/session.rb: Delete + final.rb, which was obsoleted long ago. + Fri Dec 20 00:16:06 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net> * re.c (rb_reg_match_pre, rb_reg_match_post, match_to_a, diff --git a/lib/README b/lib/README index 9811f94d7..41c180913 100644 --- a/lib/README +++ b/lib/README @@ -15,7 +15,6 @@ delegate.rb delegates messages to other object e2mmap.rb exception utilities eregex.rb extended regular expression (just a proof of concept) fileutils.rb file utilities -final.rb adds finalizer to the object (simple) finalize.rb adds finalizer to the object find.rb traverses directory tree forwardable.rb explicit delegation library diff --git a/lib/cgi/session.rb b/lib/cgi/session.rb index 64a7bd701..79ee0e3fe 100644 --- a/lib/cgi/session.rb +++ b/lib/cgi/session.rb @@ -3,7 +3,6 @@ # Copyright (C) 2000 Information-technology Promotion Agency, Japan require 'cgi' -require 'final' class CGI class Session diff --git a/lib/final.rb b/lib/final.rb deleted file mode 100644 index 9d8123882..000000000 --- a/lib/final.rb +++ /dev/null @@ -1,4 +0,0 @@ -# $Id$ -# Copyright (C) 1998 Yukihiro Matsumoto. All rights reserved. - -# final.rb is integrated into ObjectSpace; no longer needed. |