diff -r ebe08056c60c -r e1439046d96e samples/effectivelist/src/org/apidesign/effectivelist/Listable.scala --- a/samples/effectivelist/src/org/apidesign/effectivelist/Listable.scala Sun Sep 02 22:00:13 2012 +0200 +++ b/samples/effectivelist/src/org/apidesign/effectivelist/Listable.scala Sun Oct 06 22:05:14 2013 +0200 @@ -4,7 +4,7 @@ * to previous and next items in the list effective. */ // BEGIN: effectivelist.item -trait Listable[T <: Listable[T]] { +trait Listable[T] { private[effectivelist] var prev : T = _ private[effectivelist] var next : T = _ }