array-compositing 1.0.7 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -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
|
|