1
0
Fork 0
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:
gotoyuzo 2003-08-07 18:24:27 +00:00
parent 430eabfe13
commit 4eb4064085
2 changed files with 6 additions and 2 deletions

View file

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

View file

@ -261,8 +261,7 @@ module WEBrick
def list
ret = []
each_data{|data|
data.next_data = nil
ret << data
ret << data.to_s
}
ret
end