Ignoring importation errors, temporarily.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2024-06-20 11:10:56 -05:00
parent f67a24c94c
commit 968bfff3bb

View File

@ -11,7 +11,7 @@ OrderedDictionary >> asLepiterSnippet [
self at: 'className' ifAbsent: [ ^ nil ]. self at: 'className' ifAbsent: [ ^ nil ].
response := (self at: 'className') asClass new. response := (self at: 'className') asClass new.
response fromDictionary: self. response fromDictionary: self.
response fromString: (self at: 'content'). [ response fromString: (self at: 'content') ] onErrorDo: [ ].
self at: 'origin' ifPresent: [ response metadata at: 'origin' put: (self at: 'origin') ]. self at: 'origin' ifPresent: [ response metadata at: 'origin' put: (self at: 'origin') ].
self at: 'errata' ifPresent: [ response metadata at: 'errata' put: (self at: 'errata') ]. self at: 'errata' ifPresent: [ response metadata at: 'errata' put: (self at: 'errata') ].
^ response ^ response