Skip to content

Commit 07ab12f

Browse files
PublishSubject.apply() does not take a parameter
1 parent 5796e71 commit 07ab12f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

language-adaptors/rxjava-scala/src/main/scala/rx/lang/scala/subjects/PublishSubject.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package rx.lang.scala.subjects
33
import rx.lang.scala.Subject
44

55
object PublishSubject {
6-
def apply[T](value: T): PublishSubject[T] = {
6+
def apply[T](): PublishSubject[T] = {
77
new PublishSubject[T](rx.subjects.PublishSubject.create())
88
}
99
}

0 commit comments

Comments
 (0)