Skip to content
This repository has been archived by the owner on Apr 17, 2018. It is now read-only.

Commit

Permalink
Removed redundant Property#send call
Browse files Browse the repository at this point in the history
  • Loading branch information
dkubb committed Jan 24, 2011
1 parent 5359152 commit 5625c91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/dm-core/property.rb
Expand Up @@ -464,7 +464,7 @@ def options
options = {}
accepted_options.each do |method|
value = send(method)
options[method] = send(method) unless value.nil?
options[method] = value unless value.nil?
end
options
end
Expand Down

0 comments on commit 5625c91

Please sign in to comment.