diff --git a/rxjava-core/src/main/java/rx/Observable.java b/rxjava-core/src/main/java/rx/Observable.java index 8079d53532..2224fa3c8e 100644 --- a/rxjava-core/src/main/java/rx/Observable.java +++ b/rxjava-core/src/main/java/rx/Observable.java @@ -4589,30 +4589,6 @@ public final Observable> groupBy(final Func1(keySelector)); } - /** - * Groups the items emitted by an Observable according to a specified criterion, and emits these grouped - * items, transformed by a selector, within {@link GroupedObservable}s, one {@code GroupedObservable} per - * group. - *

- * - * - * @param keySelector - * a function that extracts the key from an item - * @param elementSelector - * a function to map a source item to an item emitted by a {@link GroupedObservable} - * @param - * the key type - * @param - * the type of items emitted by the resulting {@link GroupedObservable}s - * @return an Observable that emits {@link GroupedObservable}s, each of which corresponds to a unique key - * value and emits transformed items corresponding to items from the source Observable that share - * that key value - * @see RxJava Wiki: groupBy - */ - public final Observable> groupBy(final Func1 keySelector, final Func1 elementSelector) { - return null; - } - /** * Groups the items emitted by an Observable according to a specified key selector function until the * duration Observable expires for the key.