We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 605d20e + 052482b commit 8b8c17dCopy full SHA for 8b8c17d
1 file changed
src/DataFrame/DataFrameInternal.class.st
@@ -251,17 +251,13 @@ DataFrameInternal >> initialize: aPoint [
251
{ #category : #accessing }
252
DataFrameInternal >> numberOfColumns [
253
254
- contents numberOfColumns ifNil: [ ^ 0 ].
255
-
256
- ^ contents numberOfColumns
+ ^ contents numberOfColumns ifNil: [ 0 ]
257
]
258
259
260
DataFrameInternal >> numberOfRows [
261
262
- contents numberOfRows ifNil: [ ^ 0 ].
263
264
- ^ contents numberOfRows
+ ^ contents numberOfRows ifNil: [ 0 ]
265
266
267
{ #category : #printing }
0 commit comments