diff options
author | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-03-22 05:24:00 +0000 |
---|---|---|
committer | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-03-22 05:24:00 +0000 |
commit | a259e766a6153ad3ec05bc2ea2ad195775196e45 (patch) | |
tree | bcabcafbd69be21e05f4fb79377427af343d05e4 | |
parent | 7be4864ba1cc7908bcf997e01ee7c3cc62f2c372 (diff) | |
download | ruby-a259e766a6153ad3ec05bc2ea2ad195775196e45.tar.gz ruby-a259e766a6153ad3ec05bc2ea2ad195775196e45.tar.xz ruby-a259e766a6153ad3ec05bc2ea2ad195775196e45.zip |
net/protocol.rb: Protocol#start should return self.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2253 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | lib/net/protocol.rb | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Fri Mar 22 14:32:14 2002 Minero Aoki <aamine@loveruby.net> + + * lib/net/protocol.rb: Protocol#start should return self. + Fri Mar 22 14:14:21 2002 Tanaka Akira <akr@m17n.org> * lib/resolv.rb: fix arguments to create exceptions. diff --git a/lib/net/protocol.rb b/lib/net/protocol.rb index b95df2d2d..bc8a4863e 100644 --- a/lib/net/protocol.rb +++ b/lib/net/protocol.rb @@ -136,7 +136,7 @@ module Net do_start( *args ) @active = true - nil + self end private |