mirror of https://github.com/sbt/sbt.git
support extra axis for streams
This commit is contained in:
parent
7c2880915d
commit
13a0c155df
|
|
@ -72,9 +72,9 @@ private class BasicAttributeMap(private val backing: Map[AttributeKey[_], Any])
|
|||
}
|
||||
|
||||
// type inference required less generality
|
||||
final case class AttributeEntry[T](a: AttributeKey[T], b: T)
|
||||
final case class AttributeEntry[T](key: AttributeKey[T], value: T)
|
||||
{
|
||||
override def toString = a.label + ": " + b
|
||||
override def toString = key.label + ": " + value
|
||||
}
|
||||
|
||||
final case class Attributed[D](data: D)(val metadata: AttributeMap)
|
||||
|
|
|
|||
Loading…
Reference in New Issue