X-Git-Url: http://nitlanguage.org diff --git a/lib/standard/text/abstract_text.nit b/lib/standard/text/abstract_text.nit index 8de0af9..1faaad3 100644 --- a/lib/standard/text/abstract_text.nit +++ b/lib/standard/text/abstract_text.nit @@ -1353,10 +1353,6 @@ abstract class Buffer # In Buffers, the internal sequence of character is mutable # Thus, `chars` can be used to modify the buffer. redef fun chars: Sequence[Char] is abstract - - # In Buffers, the internal sequence of bytes is mutable - # Thus, `bytes` can be used to modify the buffer. - redef fun bytes: Sequence[Byte] is abstract end # View for chars on Buffer objects, extends Sequence @@ -1373,7 +1369,6 @@ end # for mutation operations private abstract class BufferByteView super StringByteView - super Sequence[Byte] redef type SELFTYPE: Buffer end