array-compositing 1.0.7 → 1.0.8
Sign up to get free protection for your applications and to get access to all the features.
@@ -170,7 +170,7 @@ module ::Array::Compositing::ArrayInterface
|
|
170
170
|
|
171
171
|
load_parent_state
|
172
172
|
|
173
|
-
super
|
173
|
+
return super
|
174
174
|
|
175
175
|
end
|
176
176
|
|
@@ -180,13 +180,9 @@ module ::Array::Compositing::ArrayInterface
|
|
180
180
|
|
181
181
|
def each( *args, & block )
|
182
182
|
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
block.call( self[ index ] )
|
187
|
-
end
|
188
|
-
|
189
|
-
return self
|
183
|
+
load_parent_state
|
184
|
+
|
185
|
+
return super
|
190
186
|
|
191
187
|
end
|
192
188
|
|