mirror of https://github.com/sbt/sbt.git
s/remove/removed/
This commit is contained in:
parent
ae193d568f
commit
1db6f7f316
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue