-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Description
When README.md
is missing in the folder, then classComment
will stay uninitialized and then will fail when specifying comment
self addClassDefinitionFrom: classPropertiesDict comment: classComment withSqueakLineEndings.
maybe a fix would be to just add to the beginning of the method classComment := ''
, or changing the retrieval to soemthing like
classComment := entries
detect: [ :entry | entry name = 'README.md' ]
ifFound: [ :commentEntry | commentEntry contents ]
ifNone: [ '' ].
Metadata
Metadata
Assignees
Labels
No labels