summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/mutable/BufferProxy.scala
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2006-03-03 14:32:42 +0000
committermihaylov <mihaylov@epfl.ch>2006-03-03 14:32:42 +0000
commitd7007f7a9607481eb73b8df587e3c52cf4272147 (patch)
treebd7a2af714fa1f12f38a3f1172c4001dde78f558 /src/library/scala/collection/mutable/BufferProxy.scala
parent91a9821f91d9953eaa14d09c18041ed3fdb4f0bb (diff)
downloadscala-d7007f7a9607481eb73b8df587e3c52cf4272147.tar.gz
scala-d7007f7a9607481eb73b8df587e3c52cf4272147.tar.bz2
scala-d7007f7a9607481eb73b8df587e3c52cf4272147.zip
Use 'mixin class' instead of 'trait'
Diffstat (limited to 'src/library/scala/collection/mutable/BufferProxy.scala')
-rw-r--r--src/library/scala/collection/mutable/BufferProxy.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/mutable/BufferProxy.scala b/src/library/scala/collection/mutable/BufferProxy.scala
index 762cdb1fe0..463f537841 100644
--- a/src/library/scala/collection/mutable/BufferProxy.scala
+++ b/src/library/scala/collection/mutable/BufferProxy.scala
@@ -19,7 +19,7 @@ package scala.collection.mutable;
* @author Matthias Zenger
* @version 1.0, 16/04/2004
*/
-trait BufferProxy[A] extends Buffer[A] with Proxy {
+mixin class BufferProxy[A] extends Buffer[A] with Proxy {
def self: Buffer[A];