diff --git a/src/XML-Parser/SAXParserDriver.class.st b/src/XML-Parser/SAXParserDriver.class.st index 7435a6be..74ccbd09 100644 --- a/src/XML-Parser/SAXParserDriver.class.st +++ b/src/XML-Parser/SAXParserDriver.class.st @@ -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' }