diff --git a/rxjava-core/src/main/java/rx/observables/GroupedObservable.java b/rxjava-core/src/main/java/rx/observables/GroupedObservable.java index 48854f10ea..e7970720e7 100644 --- a/rxjava-core/src/main/java/rx/observables/GroupedObservable.java +++ b/rxjava-core/src/main/java/rx/observables/GroupedObservable.java @@ -46,7 +46,9 @@ public class GroupedObservable extends Observable { * @param o * the {@link Observable} to convert * @return a {@code GroupedObservable} representation of {@code o}, with key {@code key} + * @deprecated Use Observable.groupBy with element selector instead. */ + @Deprecated public static GroupedObservable from(K key, final Observable o) { return new GroupedObservable(key, new OnSubscribe() {