Skip to content

Commit

Permalink
Fixed scala compilation error.
Browse files Browse the repository at this point in the history
  • Loading branch information
akarnokd committed Dec 6, 2013
1 parent 7729df4 commit d85c15f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ trait Observable[+T]
val o1: rx.Observable[_ <: rx.Observable[_]] = asJavaObservable.window[Closing](func)
val o2 = Observable[rx.Observable[_]](o1).map((x: rx.Observable[_]) => {
val x2 = x.asInstanceOf[rx.Observable[_ <: T]]
Observable[T](x2)
toScalaObservable[T](x2)
})
o2
}
Expand Down

0 comments on commit d85c15f

Please sign in to comment.