From feef56628afe3fa861f0da5f92c909e029efceac Mon Sep 17 00:00:00 2001 From: Chris Boden Date: Sun, 16 Feb 2014 14:48:52 -0500 Subject: [PATCH] [Stream] Removed unused meta data --- Buffer.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Buffer.php b/Buffer.php index 61a2faf..e960e31 100644 --- a/Buffer.php +++ b/Buffer.php @@ -20,16 +20,11 @@ class Buffer extends EventEmitter implements WritableStreamInterface 'file' => '', 'line' => 0, ); - private $meta; public function __construct($stream, LoopInterface $loop) { $this->stream = $stream; $this->loop = $loop; - - if (is_resource($stream)) { - $this->meta = stream_get_meta_data($stream); - } } public function isWritable()