summaryrefslogtreecommitdiff
path: root/src/main/scala/forge/Target.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/forge/Target.scala')
-rw-r--r--src/main/scala/forge/Target.scala4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/main/scala/forge/Target.scala b/src/main/scala/forge/Target.scala
index 9dd3f8ab..c6908d1d 100644
--- a/src/main/scala/forge/Target.scala
+++ b/src/main/scala/forge/Target.scala
@@ -36,10 +36,6 @@ object Target{
def zip[V: Format](other: Target[V]) = {
new Target.Zipped(this, other)
}
- def ~[V: Format, R: Format](other: Target[V])
- (implicit s: Implicits.Sequencer[T, V, R]): Target[R] = {
- this.zip(other).map(s.apply _ tupled)
- }
}
def test(inputs: Target[Int]*) = {
new Test(inputs, pure = inputs.nonEmpty)