Skip to content

Commit

Permalink
Fix method
Browse files Browse the repository at this point in the history
  • Loading branch information
gcotelli committed Nov 21, 2024
1 parent aae4422 commit 790dc6c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ GemStone64Platform >> globalNamed: aSymbol ifAbsent: absentBlock [
{ #category : 'reflection' }
GemStone64Platform >> globalNamed: symbol ifAbsentPut: block [

^ (GsCurrentSession currentSession objectNamed: aSymbol)
^ (GsCurrentSession currentSession objectNamed: symbol)
ifNil: [
| object |
object := block value.
(GsCurrentSession currentSession objectNamed: #Globals)
at: aSymbol put: object.
at: symbol put: object.
object
]
]
Expand Down

0 comments on commit 790dc6c

Please sign in to comment.