aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authorMark Rushakoff <mark.rushakoff@gmail.com>2012-04-29 10:33:35 -0700
committerMark Rushakoff <mark.rushakoff@gmail.com>2012-04-29 11:03:11 -0700
commitd56f5c8db7e937cabd07ff192c386f2aefed33a4 (patch)
tree60ef8436e6f8e6451fe48d01bb3ceb2ec33347cb /activesupport/lib/active_support
parent54683f3a34edb6d2120291cbdb84b6197cb2eb35 (diff)
downloadrails-d56f5c8db7e937cabd07ff192c386f2aefed33a4.tar.gz
rails-d56f5c8db7e937cabd07ff192c386f2aefed33a4.tar.bz2
rails-d56f5c8db7e937cabd07ff192c386f2aefed33a4.zip
Remove unused assignments
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r--activesupport/lib/active_support/testing/performance/jruby.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/testing/performance/jruby.rb b/activesupport/lib/active_support/testing/performance/jruby.rb
index b347539f13..34e3f9f45f 100644
--- a/activesupport/lib/active_support/testing/performance/jruby.rb
+++ b/activesupport/lib/active_support/testing/performance/jruby.rb
@@ -42,7 +42,7 @@ module ActiveSupport
klasses.each do |klass|
fname = output_filename(klass)
FileUtils.mkdir_p(File.dirname(fname))
- file = File.open(fname, 'wb') do |file|
+ File.open(fname, 'wb') do |file|
klass.new(@data).printProfile(file)
end
end