Skip to content

Commit

Permalink
Fixed .id => .object_id in TMail
Browse files Browse the repository at this point in the history
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1082 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
dhh committed Apr 3, 2005
1 parent d3a64c0 commit 46f2b03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions actionmailer/lib/action_mailer/vendor/tmail/port.rb
Original file line number Diff line number Diff line change
Expand Up @@ -303,11 +303,11 @@ def ==( other )
alias eql? ==

def hash
@buffer.id.hash
@buffer.object_id.hash
end

def inspect
"#<#{self.class}:id=#{sprintf '0x%x', @buffer.id}>"
"#<#{self.class}:id=#{sprintf '0x%x', @buffer.object_id}>"
end

def reproducible?
Expand Down

0 comments on commit 46f2b03

Please sign in to comment.