public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
Whitespace.

Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
clemens (author)
Tue Sep 02 07:05:59 -0700 2008
jeremy (committer)
Tue Sep 02 15:55:55 -0700 2008
commit  d3ccfe414d8f2d5058cdbc3fe7484af12dd3d05b
tree    c2f4946194f3a0ba61a54e19aecb99477454d3a9
parent  288e947ae1737645985fde76f5382baaff700505
...
91
92
93
94
 
95
96
97
98
99
100
101
 
102
103
104
...
112
113
114
115
 
116
117
118
...
123
124
125
126
 
127
128
129
...
131
132
133
134
 
135
136
137
...
91
92
93
 
94
95
96
97
98
99
100
 
101
102
103
104
...
112
113
114
 
115
116
117
118
...
123
124
125
 
126
127
128
129
...
131
132
133
 
134
135
136
137
0
@@ -91,14 +91,14 @@ class Class # :nodoc:
0
   def inheritable_attributes
0
     @inheritable_attributes ||= EMPTY_INHERITABLE_ATTRIBUTES
0
   end
0
-  
0
+
0
   def write_inheritable_attribute(key, value)
0
     if inheritable_attributes.equal?(EMPTY_INHERITABLE_ATTRIBUTES)
0
       @inheritable_attributes = {}
0
     end
0
     inheritable_attributes[key] = value
0
   end
0
-  
0
+
0
   def write_inheritable_array(key, elements)
0
     write_inheritable_attribute(key, []) if read_inheritable_attribute(key).nil?
0
     write_inheritable_attribute(key, read_inheritable_attribute(key) + elements)
0
@@ -112,7 +112,7 @@ class Class # :nodoc:
0
   def read_inheritable_attribute(key)
0
     inheritable_attributes[key]
0
   end
0
-  
0
+
0
   def reset_inheritable_attributes
0
     @inheritable_attributes = EMPTY_INHERITABLE_ATTRIBUTES
0
   end
0
@@ -123,7 +123,7 @@ class Class # :nodoc:
0
 
0
     def inherited_with_inheritable_attributes(child)
0
       inherited_without_inheritable_attributes(child) if respond_to?(:inherited_without_inheritable_attributes)
0
-      
0
+
0
       if inheritable_attributes.equal?(EMPTY_INHERITABLE_ATTRIBUTES)
0
         new_inheritable_attributes = EMPTY_INHERITABLE_ATTRIBUTES
0
       else
0
@@ -131,7 +131,7 @@ class Class # :nodoc:
0
           memo.update(key => value.duplicable? ? value.dup : value)
0
         end
0
       end
0
-      
0
+
0
       child.instance_variable_set('@inheritable_attributes', new_inheritable_attributes)
0
     end
0
 

Comments