We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 822ae9d + 023a2a6 commit 052482bCopy full SHA for 052482b
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