diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2006-09-26 16:25:27 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2006-09-26 16:25:27 +0000 |
commit | 82558186a34f6b852e9e52b78d411720476894ad (patch) | |
tree | 2f65bb9b0ed006efd4439e828205847d6a59d140 /actionpack | |
parent | 43c4d3002dd65753facea8f836e41c79a99a705c (diff) | |
download | rails-82558186a34f6b852e9e52b78d411720476894ad.tar.gz rails-82558186a34f6b852e9e52b78d411720476894ad.tar.bz2 rails-82558186a34f6b852e9e52b78d411720476894ad.zip |
whitespace
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5190 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_controller/filters.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/actionpack/lib/action_controller/filters.rb b/actionpack/lib/action_controller/filters.rb index 58868a8371..9569672bee 100644 --- a/actionpack/lib/action_controller/filters.rb +++ b/actionpack/lib/action_controller/filters.rb @@ -425,11 +425,11 @@ module ActionController #:nodoc: private def build_excluded_actions_hash @excluded_actions_hash = - if @included_actions - @included_actions.inject(Hash.new(true)){|h, a| h[a] = false; h} - else - @excluded_actions.inject(Hash.new(false)){|h, a| h[a] = true; h} - end + if @included_actions + @included_actions.inject(Hash.new(true)){|h, a| h[a] = false; h} + else + @excluded_actions.inject(Hash.new(false)){|h, a| h[a] = true; h} + end end end |