remove deprecated Initialize.scoped method

This commit is contained in:
Mark Harrah 2013-01-28 17:14:53 -05:00
parent c597b48eda
commit 1f32688657
1 changed files with 0 additions and 2 deletions

View File

@ -309,8 +309,6 @@ trait Init[Scope]
case None => this
case Some(const) => new Value(() => transform(const))
}
@deprecated("Use scopedKey.")
def scoped = scopedKey
}
private[this] final class GetValue[S,T](val scopedKey: ScopedKey[S], val transform: S => T) extends Keyed[S, T]
trait KeyedInitialize[T] extends Keyed[T, T] {