diff --git a/ChangeLog b/ChangeLog index 72b3cb6c8..283c87cd3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-01-13 Richard Frith-Macdonald + + * Source/NSURLHandle.m: ([-availableResourceData]) remove condition + that returns nil while resource is loading. Fix typo in method + description. + 2004-01-12 Adam Fedor * SSL/GNUmakefile: Include ../config.mak diff --git a/Source/NSURLHandle.m b/Source/NSURLHandle.m index f3501d2fd..d282b696b 100644 --- a/Source/NSURLHandle.m +++ b/Source/NSURLHandle.m @@ -243,14 +243,10 @@ static Class NSURLHandleClass = 0; /** * Returns the resource data that is currently available for the * handle. This may be a partially loaded resource or may be - * empty of no data has been loaded yet. + * empty if no data has been loaded yet or the last load failed. */ - (NSData*) availableResourceData { - if (_status == NSURLHandleLoadInProgress) - { - return nil; - } return _data; }