Don't specify the parent class of Eet::Stream when we re-open it.
[ruby-eet.git] / lib / eet.rb
index 8a949845063a5baf1ef8e0c75fa3ec7b9741dcfa..2048bf392c5c77c33b6ae71509d60224522c567d 100644 (file)
@@ -1,5 +1,5 @@
 #--
-# $Id: eet.rb 34 2005-04-30 13:15:19Z tilman $
+# $Id: eet.rb 37 2005-05-11 17:23:06Z tilman $
 #
 # Copyright (c) 2005 Tilman Sauerbeck (tilman at code-monkey de)
 #
@@ -161,7 +161,7 @@ module Eet
        class PropertyError < EetError; end
        class ChunkError < EetError; end
 
-       class Stream < Array # :nodoc:
+       class Stream # :nodoc:
                def initialize(chunk = nil)
                        super(chunk.nil? ? 0 : 1, chunk)
                end