Skip to content

Commit d507eec

Browse files
committed
Use #isNotEmpty instead of notEmpty
1 parent f312a83 commit d507eec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/XML-Parser/SAXParserDriver.class.st

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -516,8 +516,8 @@ SAXParserDriver >> handleXMLVersion: aVersion encoding: anEncoding standalone: a
516516

517517
{ #category : 'testing' }
518518
SAXParserDriver >> hasExternalSubset [
519-
^ self externalSubsetPublicID notEmpty
520-
or: [self externalSubsetSystemID notEmpty]
519+
^ self externalSubsetPublicID isNotEmpty
520+
or: [self externalSubsetSystemID isNotEmpty]
521521
]
522522

523523
{ #category : 'testing' }

0 commit comments

Comments
 (0)