Skip to content

Commit

Permalink
Use #isNotEmpty instead of notEmpty
Browse files Browse the repository at this point in the history
  • Loading branch information
astares committed May 28, 2024
1 parent f312a83 commit d507eec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/XML-Parser/SAXParserDriver.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -516,8 +516,8 @@ SAXParserDriver >> handleXMLVersion: aVersion encoding: anEncoding standalone: a

{ #category : 'testing' }
SAXParserDriver >> hasExternalSubset [
^ self externalSubsetPublicID notEmpty
or: [self externalSubsetSystemID notEmpty]
^ self externalSubsetPublicID isNotEmpty
or: [self externalSubsetSystemID isNotEmpty]
]

{ #category : 'testing' }
Expand Down

0 comments on commit d507eec

Please sign in to comment.