Skip to content

Commit

Permalink
Set RequiresApi = 16 JakeWharton#315
Browse files Browse the repository at this point in the history
  • Loading branch information
karrot-farmer committed Feb 25, 2018
1 parent 6e74782 commit 2cbb616
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public void setUp() {
view = activity.view;
}

@SdkSuppress(minSdkVersion = 19)
@SdkSuppress(minSdkVersion = 16)
@Test public void scrollChangeEvents() {
RecordingObserver<ViewScrollChangeEvent> o = new RecordingObserver<>();
RxView.scrollChangeEvents(view)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ public static Observable<Object> preDraws(@NonNull View view,
* <em>Warning:</em> The created observable keeps a strong reference to {@code view}. Unsubscribe
* to free this reference.
*/
@RequiresApi(19)
@RequiresApi(16)
@CheckResult @NonNull
public static Observable<ViewScrollChangeEvent> scrollChangeEvents(@NonNull View view) {
checkNotNull(view, "view == null");
Expand Down

0 comments on commit 2cbb616

Please sign in to comment.