summaryrefslogtreecommitdiff
path: root/sources/scala/collection/mutable/Buffer.scala
diff options
context:
space:
mode:
Diffstat (limited to 'sources/scala/collection/mutable/Buffer.scala')
-rw-r--r--sources/scala/collection/mutable/Buffer.scala3
1 files changed, 1 insertions, 2 deletions
diff --git a/sources/scala/collection/mutable/Buffer.scala b/sources/scala/collection/mutable/Buffer.scala
index 9dec464ff6..5d6adcc9c9 100644
--- a/sources/scala/collection/mutable/Buffer.scala
+++ b/sources/scala/collection/mutable/Buffer.scala
@@ -9,7 +9,6 @@
package scala.collection.mutable;
-
/** Buffers are used to create sequences of elements incrementally by
* appending, prepending, or inserting new elements. It is also
* possible to access and modify elements in a random access fashion
@@ -18,7 +17,7 @@ package scala.collection.mutable;
* @author Matthias Zenger
* @version 1.1, 02/03/2004
*/
-trait Buffer[A] with Seq[A] with Scriptable[Message[Pair[Location, A]]] with Cloneable {
+trait Buffer[A] extends AnyRef with Seq[A] with Scriptable[Message[Pair[Location, A]]] with Cloneable {
/** Append a single element to this buffer and return
* the identity of the buffer.