From b9d874ba4ea8952f852810abd57d6742d53030ce Mon Sep 17 00:00:00 2001 From: michelou Date: Fri, 2 Nov 2007 13:16:36 +0000 Subject: added missing override modifier (msil) --- src/dotnet-library/scala/List.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/dotnet-library') 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 -- cgit v1.2.3