Skip to content

Commit

Permalink
[feenkcom/gtoolkit#4072] Avoid mixed string/symbol comparisons
Browse files Browse the repository at this point in the history
  • Loading branch information
akgrant43 committed Oct 18, 2024
1 parent 9c9bff6 commit 5736b05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ GtGemStoneSnippetAsyncPromiseWrapper >> wait [
value: (binding value asGtBareProxyObject) ].

value := (computedResult
at: 'snippetResult'
at: #snippetResult
ifPresent: [ :obj |
serializationStrategy
ifNil: [ obj ]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ GtGemStoneSnippetExecutionStrategy >> updateWithRemoteComputationResult: aComput
self updateWithRemoteComputationResult: aComputedResult pharoBindings: pharoBindings .

^ (aComputedResult
at: 'snippetResult'
at: #snippetResult
ifPresent: [ :obj |
aSerializationStrategy
ifNil: [ obj ]
Expand Down

0 comments on commit 5736b05

Please sign in to comment.