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

* lib/webrick/httpserver.rb (WEBrick::HTTPServer::unmount): remove

inpect argument from sprintf.  [ruby-dev:29039]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10554 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2006-07-18 05:08:37 +00:00
parent 7b0c9cf2e2
commit 564d84aaae
3 changed files with 7 additions and 2 deletions

View file

@ -120,7 +120,7 @@ module WEBrick
end
def unmount(dir)
@logger.debug(sprintf("unmount %s.", inspect, dir))
@logger.debug(sprintf("unmount %s.", dir))
@mount_tab.delete(dir)
end
alias umount unmount