ObjFW  Diff

Differences From Artifact [a9c8d0ec12]:

To Artifact [94f1868a8f]:


503
504
505
506
507
508
509
510

511
512

513
514
515
516
517
518
519
503
504
505
506
507
508
509

510
511

512
513
514
515
516
517
518
519







-
+

-
+








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

- (bool)hasDataInReadBuffer
- (bool)lowlevelHasDataInReadBuffer
{
	return (super.hasDataInReadBuffer || _stream.hasDataInReadBuffer ||
	return (_stream.hasDataInReadBuffer ||
	    _bufferLength - _bufferIndex > 0);
}

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