aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/json
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/json
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/json')
-rw-r--r--activesupport/lib/active_support/json/backends/yaml.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/json/backends/yaml.rb b/activesupport/lib/active_support/json/backends/yaml.rb
index 215b3d6f90..4cb9d01077 100644
--- a/activesupport/lib/active_support/json/backends/yaml.rb
+++ b/activesupport/lib/active_support/json/backends/yaml.rb
@@ -13,7 +13,7 @@ module ActiveSupport
json = json.read
end
YAML.load(convert_json_to_yaml(json))
- rescue ArgumentError => e
+ rescue ArgumentError
raise ParseError, "Invalid JSON string"
end