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 /lib/net/protocol.rb | |
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
Diffstat (limited to 'lib/net/protocol.rb')
-rw-r--r-- | lib/net/protocol.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 |