ruby-changes:25702
From: nobu <ko1@a...>
Date: Tue, 20 Nov 2012 21:34:46 +0900 (JST)
Subject: [ruby-changes:25702] nobu:r37759 (trunk): remove trailing spaces.
nobu 2012-11-20 21:34:37 +0900 (Tue, 20 Nov 2012) New Revision: 37759 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=37759 Log: remove trailing spaces. Modified files: trunk/lib/net/imap.rb trunk/test/ruby/test_exception.rb trunk/test/ruby/test_settracefunc.rb Index: lib/net/imap.rb =================================================================== --- lib/net/imap.rb (revision 37758) +++ lib/net/imap.rb (revision 37759) @@ -2033,7 +2033,7 @@ end end - class BodyTypeExtension < Struct.new(:media_type, :subtype, + class BodyTypeExtension < Struct.new(:media_type, :subtype, :params, :content_id, :description, :encoding, :size) def multipart? @@ -2414,11 +2414,11 @@ # If this is not message/rfc822, we shouldn't apply the RFC822 spec # to it. # We should handle anything other than message/rfc822 using - # multipart extension data [rfc3501] (i.e. the data itself won't be + # multipart extension data [rfc3501] (i.e. the data itself won't be # returned, we would have to retrieve it with BODYSTRUCTURE instead # of with BODY if "#{mtype}/#{msubtype}" != 'MESSAGE/RFC822' then - return BodyTypeExtension.new(mtype, msubtype, + return BodyTypeExtension.new(mtype, msubtype, param, content_id, desc, enc, size) end Index: test/ruby/test_settracefunc.rb =================================================================== --- test/ruby/test_settracefunc.rb (revision 37758) +++ test/ruby/test_settracefunc.rb (revision 37759) @@ -533,7 +533,7 @@ def test_tracepoint events1, answer_events = *trace_by_tracepoint() - + mesg = events1.map{|e| "#{e[0]} - #{e[2]}:#{e[1]} id: #{e[4]}" }.join("\n") @@ -627,7 +627,7 @@ def test_tracepoint_enabled trace = TracePoint.trace(:call){|tp| - # + # } assert_equal(true, trace.enabled?) trace.disable{ Index: test/ruby/test_exception.rb =================================================================== --- test/ruby/test_exception.rb (revision 37758) +++ test/ruby/test_exception.rb (revision 37759) @@ -472,7 +472,7 @@ assert_equal(false, s.tainted?, "#{exc}#to_s should not propagate taintness") end - + o = Object.new def o.to_str "foo" -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/