Undeprecate conversions to ScopedKey

This commit is contained in:
Mark Harrah 2011-08-28 13:30:11 -04:00
parent 1471081c0d
commit 0c2cb33d7b
1 changed files with 0 additions and 3 deletions

View File

@ -102,10 +102,7 @@ final class InputKey[T] private(val key: AttributeKey[InputTask[T]]) extends Key
object Scoped
{
@deprecated("Implicit conversion from ScopedTask[T] to ScopedKey[Task[T]] is deprecated. Use the scopedKey method of ScopedTask.")
implicit def taskScopedToKey[T](s: ScopedTask[T]): ScopedKey[Task[T]] = ScopedKey(s.scope, s.key)
@deprecated("Implicit conversion from ScopedInput[T] to ScopedKey[InputTask[T]] is deprecated. Use the scopedKey method of ScopedInput.")
implicit def inputScopedToKey[T](s: ScopedInput[T]): ScopedKey[InputTask[T]] = ScopedKey(s.scope, s.key)
sealed trait ScopingSetting[Result]