Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 5190

Show
Ignore:
Timestamp:
09/26/06 16:25:27 (2 years ago)
Author:
bitsweat
Message:

whitespace

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionpack/lib/action_controller/filters.rb

    r5163 r5190  
    426426        def build_excluded_actions_hash 
    427427          @excluded_actions_hash = 
    428                    if @included_actions 
    429                      @included_actions.inject(Hash.new(true)){|h, a| h[a] = false; h} 
    430                    else 
    431                      @excluded_actions.inject(Hash.new(false)){|h, a| h[a] = true; h} 
    432                    end 
     428            if @included_actions 
     429              @included_actions.inject(Hash.new(true)){|h, a| h[a] = false; h} 
     430            else 
     431              @excluded_actions.inject(Hash.new(false)){|h, a| h[a] = true; h} 
     432            end 
    433433        end 
    434434      end