Skip to content

Commit

Permalink
Fix deprecated call
Browse files Browse the repository at this point in the history
  • Loading branch information
jecisc committed May 17, 2024
1 parent da2c979 commit 3ac99bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Microdown-RichTextComposer/MicSemanticAction.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ MicSemanticAction >> getMetaClassOrNil [

{ #category : 'instance creation' }
MicSemanticAction >> getPackageOrNil [
entity := RPackageOrganizer default packageNamed: tokens first asString ifAbsent: [ nil ].
entity := self class packageOrganizer packageNamed: tokens first asString ifAbsent: [ nil ].
^ entity

]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Extension { #name : 'MicrodownParser' }

{ #category : '*Microdown-RichTextComposer' }
MicrodownParser classSide >> convertToRichText: aString [
MicrodownParser class >> convertToRichText: aString [
^ MicRichTextComposer new visit: (self new parse: aString)
]

0 comments on commit 3ac99bb

Please sign in to comment.