send -> send! for some private methods

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7659 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper 2007-09-27 10:41:12 +00:00
parent b01a7c69fc
commit 053d057a88
2 changed files with 7 additions and 7 deletions

View File

@ -11,7 +11,7 @@ module ActiveSupport
private
def method_missing(method, *arguments, &block)
merge_argument_options! arguments
@context.send(method, *arguments, &block)
@context.send!(method, *arguments, &block)
end
def merge_argument_options!(arguments)

View File

@ -76,7 +76,7 @@ class TimeZone
# Create a new TimeZone instance with the given name and offset.
def create(name, offset)
zone = allocate
zone.send :initialize, name, offset
zone.send!(:initialize, name, offset)
zone
end