Skip to content

Commit

Permalink
Merge cb0b322
Browse files Browse the repository at this point in the history
  • Loading branch information
JurajKubelka committed Jul 19, 2024
2 parents 297a0c0 + cb0b322 commit 8923818
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,7 @@ GtPharoCompletionStrategy >> gtViewChildrenFor: aView [
{ #category : #testing }
GtPharoCompletionStrategy >> hasCompletionsAt: anInteger in: aText [
| char |
anInteger < 1
ifTrue: [ ^ false ].
(anInteger < 1 or: [ anInteger > aText size ]) ifTrue: [ ^ false ].
char := aText at: anInteger.
^ char isLetter or: [ char isDigit ]
]
Expand Down

0 comments on commit 8923818

Please sign in to comment.