summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/mutable/QueueProxy.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2007-01-22 22:17:43 +0000
committerMartin Odersky <odersky@gmail.com>2007-01-22 22:17:43 +0000
commite3e918acdb1225312f1d13f6fdc7b1073aae39b2 (patch)
treea656f3858fd7d0d5c983ed6ccac14820652c2536 /src/library/scala/collection/mutable/QueueProxy.scala
parent6c4b4f89c8f5230027a583c7b51b3d19195069f4 (diff)
downloadscala-e3e918acdb1225312f1d13f6fdc7b1073aae39b2.tar.gz
scala-e3e918acdb1225312f1d13f6fdc7b1073aae39b2.tar.bz2
scala-e3e918acdb1225312f1d13f6fdc7b1073aae39b2.zip
fixed problems with build.
Diffstat (limited to 'src/library/scala/collection/mutable/QueueProxy.scala')
-rw-r--r--src/library/scala/collection/mutable/QueueProxy.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/mutable/QueueProxy.scala b/src/library/scala/collection/mutable/QueueProxy.scala
index 21d3635241..e882303db2 100644
--- a/src/library/scala/collection/mutable/QueueProxy.scala
+++ b/src/library/scala/collection/mutable/QueueProxy.scala
@@ -83,7 +83,7 @@ trait QueueProxy[A] extends Queue[A] with SeqProxy[A] {
/** Removes all elements from the queue. After this operation is completed,
* the queue will be empty.
*/
- override def clear: Unit = self.clear
+ override def clear(): Unit = self.clear
/** Returns an iterator over all elements on the queue.
*