mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/webrick/httputils.rb (FormData#list): should not take
a side effect for the receiver. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4352 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
430eabfe13
commit
4eb4064085
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Fri Aug 8 03:22:28 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
||||
|
||||
* lib/webrick/httputils.rb (FormData#list): should not take
|
||||
a side effect for the receiver.
|
||||
|
||||
Thu Aug 7 14:40:37 2003 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||
|
||||
* cygwin/GNUmakefile: better --disbale-shared option support.
|
||||
|
|
|
@ -261,8 +261,7 @@ module WEBrick
|
|||
def list
|
||||
ret = []
|
||||
each_data{|data|
|
||||
data.next_data = nil
|
||||
ret << data
|
||||
ret << data.to_s
|
||||
}
|
||||
ret
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue