From 1f32688657433b413b9d3dbe10e0c784a0cd211b Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Mon, 28 Jan 2013 17:14:53 -0500 Subject: [PATCH] remove deprecated Initialize.scoped method --- util/collection/src/main/scala/sbt/Settings.scala | 2 -- 1 file changed, 2 deletions(-) diff --git a/util/collection/src/main/scala/sbt/Settings.scala b/util/collection/src/main/scala/sbt/Settings.scala index d85876496..3c1433ab1 100644 --- a/util/collection/src/main/scala/sbt/Settings.scala +++ b/util/collection/src/main/scala/sbt/Settings.scala @@ -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] {