From 0c2cb33d7ba4c1cdf4df18fd90d2ffc7010146dc Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Sun, 28 Aug 2011 13:30:11 -0400 Subject: [PATCH] Undeprecate conversions to ScopedKey --- main/Structure.scala | 3 --- 1 file changed, 3 deletions(-) diff --git a/main/Structure.scala b/main/Structure.scala index bd390e2ef..5d1b07ffd 100644 --- a/main/Structure.scala +++ b/main/Structure.scala @@ -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]