mirror of
https://github.com/sbt/sbt.git
synced 2026-09-04 08:45:56 +02:00
s/remove/removed/
This commit is contained in:
@@ -3,11 +3,11 @@ package sbt
|
||||
import scala.annotation.implicitNotFound
|
||||
|
||||
object Remove {
|
||||
@implicitNotFound(msg = "No implicit for Remove.Value[${A}, ${B}] found,\n so ${B} cannot be remove from ${A}")
|
||||
@implicitNotFound(msg = "No implicit for Remove.Value[${A}, ${B}] found,\n so ${B} cannot be removed from ${A}")
|
||||
trait Value[A, B] extends Any {
|
||||
def removeValue(a: A, b: B): A
|
||||
}
|
||||
@implicitNotFound(msg = "No implicit for Remove.Values[${A}, ${B}] found,\n so ${B} cannot be remove from ${A}")
|
||||
@implicitNotFound(msg = "No implicit for Remove.Values[${A}, ${B}] found,\n so ${B} cannot be removed from ${A}")
|
||||
trait Values[A, -B] extends Any {
|
||||
def removeValues(a: A, b: B): A
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user