- replaced ":" by "requires"

git-svn-id: http://lampsvn.epfl.ch/svn-repos/scala/scala/trunk@5480 5e8d7ff9-d8ef-0310-90f0-a4852d11357a
This commit is contained in:
michelou 2006-01-09 18:01:43 +00:00
parent 37aab3939e
commit a300e06820
1 changed files with 4 additions and 3 deletions

View File

@ -1,12 +1,13 @@
/* __ *\
** ________ ___ / / ___ Scala API **
** / __/ __// _ | / / / _ | (c) 2003, LAMP/EPFL **
** / __/ __// _ | / / / _ | (c) 2003-2006, LAMP/EPFL **
** __\ \/ /__/ __ |/ /__/ __ | **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
** $Id$
\* */
// $Id$
package scala.collection.mutable;
/** This extensible class may be used as a basis for implementing double
@ -18,7 +19,7 @@ package scala.collection.mutable;
* @version 1.0, 08/07/2003
*/
[serializable]
abstract class DoubleLinkedList[A, This <: DoubleLinkedList[A, This]]: This
abstract class DoubleLinkedList[A, This <: DoubleLinkedList[A, This]] requires This
extends SingleLinkedList[A, This] {
var prev: This = _;