Skip to content

Commit

Permalink
Remove more deprecated code
Browse files Browse the repository at this point in the history
  • Loading branch information
mttkay committed Sep 9, 2014
1 parent 5eaa15c commit 53bc707
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 155 deletions.
10 changes: 0 additions & 10 deletions src/main/java/rx/android/observables/ViewObservable.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,11 @@

import rx.Observable;
import rx.operators.OperatorCompoundButtonInput;
import rx.operators.OperatorEditTextInput;
import rx.operators.OperatorTextViewInput;
import rx.operators.OperatorViewClick;

import android.view.View;
import android.widget.CompoundButton;
import android.widget.EditText;
import android.widget.TextView;

public class ViewObservable {
Expand All @@ -40,14 +38,6 @@ public static <T extends TextView> Observable<T> text(final T input, final boole
return Observable.create(new OperatorTextViewInput<T>(input, emitInitialValue));
}

/**
* @deprecated Use #text(android.widget.TextView, boolean)} (and map the values) instead.
*/
@Deprecated
public static Observable<String> input(final EditText input, final boolean emitInitialValue) {
return Observable.create(new OperatorEditTextInput(input, emitInitialValue));
}

public static Observable<Boolean> input(final CompoundButton button, final boolean emitInitialValue) {
return Observable.create(new OperatorCompoundButtonInput(button, emitInitialValue));
}
Expand Down
145 changes: 0 additions & 145 deletions src/test/java/rx/android/operators/OperatorEditTextInputTest.java

This file was deleted.

0 comments on commit 53bc707

Please sign in to comment.