We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f08fb19 commit b66c0d3Copy full SHA for b66c0d3
rxjava-core/src/main/java/org/rx/reactive/Observable.java
@@ -69,15 +69,6 @@ public abstract class Observable<T> {
69
public Observable() {
70
}
71
72
- public static <T> Observable<T> create(final Func1<Subscription, Observer<T>> f, Observer<T> observer) {
73
- return new Observable<T>() {
74
- @Override
75
- public Subscription subscribe(Observer<T> observer) {
76
- return f.call(observer);
77
- }
78
- };
79
80
-
81
/**
82
* A Observer must call a Observable's <code>subscribe</code> method in order to register itself
83
* to receive push-based notifications from the Observable. A typical implementation of the
0 commit comments