Skip to content

Commit

Permalink
Merge pull request #133 from Atry/hide-bindingBindableSeq
Browse files Browse the repository at this point in the history
Hide bindingBindableSeq, which results ambiguous implicit values
  • Loading branch information
Atry authored Nov 6, 2021
2 parents 7e6f3aa + 0bc1426 commit 431b9ee
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ package bindable {
}

private[bindable] trait LowPriorityBindableSeq1 extends LowPriorityJsBindableSeq2 {
implicit def bindingBindableSeq[Value0]: BindableSeq.Aux[Binding[Value0], Value0] =
@deprecated("Resulting ambiguous implicit values with watchableBindableSeq", "2.1.1")
private[bindable] def bindingBindableSeq[Value0]: BindableSeq.Aux[Binding[Value0], Value0] =
new BindableSeq[Binding[Value0]] {
type Value = Value0
def toBindingSeq(from: Binding[Value0]): BindingSeq[Value] = SingletonBindingSeq(from)
Expand Down

0 comments on commit 431b9ee

Please sign in to comment.