summaryrefslogtreecommitdiff
path: root/src/dotnet-library
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotnet-library')
-rw-r--r--src/dotnet-library/scala/List.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotnet-library/scala/List.scala b/src/dotnet-library/scala/List.scala
index 8cc9e4e419..e50d8e9bc5 100644
--- a/src/dotnet-library/scala/List.scala
+++ b/src/dotnet-library/scala/List.scala
@@ -787,7 +787,7 @@ sealed abstract class List[+A] extends Seq[A] {
* The relative order of the elements in the sub-lists is the
* same as in the original list.
*/
- def partition(p: A => Boolean): (List[A], List[A]) = {
+ override def partition(p: A => Boolean): (List[A], List[A]) = {
val btrue = new ListBuffer[A]
val bfalse = new ListBuffer[A]
var these = this