We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa2fbdc commit 3616e38Copy full SHA for 3616e38
1 file changed
src/DataFrame/DataFrame.class.st
@@ -2454,10 +2454,7 @@ DataFrame >> toString [
2454
2455
dataFrame columnNames withIndexDo: [ :columnName :index |
2456
| paddedColumnName |
2457
- paddedColumnName := (columnName isString
2458
- ifFalse: [ columnName asString ]
2459
- ifTrue: [ columnName ]) padRightTo:
2460
- (columnWidths at: index).
+ paddedColumnName := columnName asString padRightTo: (columnWidths at: index).
2461
stringTable nextPutAll: paddedColumnName , ' ' ].
2462
stringTable cr.
2463
0 commit comments