Skip to content

Commit

Permalink
Merge pull request #1582 from benjchristensen/groupedObservable-from
Browse files Browse the repository at this point in the history
Deprecate GroupedObservable.from
  • Loading branch information
benjchristensen committed Aug 14, 2014
2 parents b061406 + e8263f9 commit c7baab8
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ public class GroupedObservable<K, T> extends Observable<T> {
* @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 <K, T> GroupedObservable<K, T> from(K key, final Observable<T> o) {
return new GroupedObservable<K, T>(key, new OnSubscribe<T>() {

Expand Down

0 comments on commit c7baab8

Please sign in to comment.