1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
* lib/net/imap.rb (Net::IMAP#append): don't call Flag::new.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1013 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shugo 2000-10-25 04:27:59 +00:00
parent 4098e5861e
commit 52a2acbad3

View file

@ -315,7 +315,6 @@ module Net
def append(mailbox, message, flags = nil, date_time = nil)
args = []
if flags
flags.collect! {|i| Flag.new(i)}
args.push(flags)
end
args.push(date_time) if date_time