ObjFW  Diff

Differences From Artifact [0ba99f6e66]:

To Artifact [1c76370f81]:


358
359
360
361
362
363
364
365

366
367

368
369
370
371
372
373
374
358
359
360
361
362
363
364

365
366

367
368
369
370
371
372
373
374







-
+

-
+







{
	if (_stream == nil)
		@throw [OFNotOpenException exceptionWithObject: self];

	return _atEndOfStream;
}

- (bool)hasDataInReadBuffer
- (bool)lowlevelHasDataInReadBuffer
{
	return (super.hasDataInReadBuffer || _stream.hasDataInReadBuffer);
	return _stream.hasDataInReadBuffer;
}

- (int)fileDescriptorForReading
{
	return ((id <OFReadyForReadingObserving>)_stream)
	    .fileDescriptorForReading;
}