1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

net/protocol.rb: Protocol#start should return self.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2253 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
aamine 2002-03-22 05:24:00 +00:00
parent 0c41c1fc22
commit b90b70d734
2 changed files with 5 additions and 1 deletions

View file

@ -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.

View file

@ -136,7 +136,7 @@ module Net
do_start( *args )
@active = true
nil
self
end
private