aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/dependencies.rb
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-07-23 00:36:34 -0300
committerJosé Valim <jose.valim@gmail.com>2010-07-24 01:19:44 +0200
commite1d4e78b15141cf940be7a84ca856425484a98be (patch)
treebeeb97f6667df9c003d915ddac08d29fb9ded8e0 /activesupport/lib/active_support/dependencies.rb
parent80cf6559ed0f35cc525c9f2f90cf483033f6dad7 (diff)
downloadrails-e1d4e78b15141cf940be7a84ca856425484a98be.tar.gz
rails-e1d4e78b15141cf940be7a84ca856425484a98be.tar.bz2
rails-e1d4e78b15141cf940be7a84ca856425484a98be.zip
Removes unused vars
Signed-off-by: José Valim <jose.valim@gmail.com>
Diffstat (limited to 'activesupport/lib/active_support/dependencies.rb')
-rw-r--r--activesupport/lib/active_support/dependencies.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/dependencies.rb b/activesupport/lib/active_support/dependencies.rb
index 7d5143ba37..9a6da38b1c 100644
--- a/activesupport/lib/active_support/dependencies.rb
+++ b/activesupport/lib/active_support/dependencies.rb
@@ -592,7 +592,7 @@ module ActiveSupport #:nodoc:
# Convert the provided const desc to a qualified constant name (as a string).
# A module, class, symbol, or string may be provided.
def to_constant_name(desc) #:nodoc:
- name = case desc
+ case desc
when String then desc.sub(/^::/, '')
when Symbol then desc.to_s
when Module