We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77ace38 commit 9d01e7dCopy full SHA for 9d01e7d
1 file changed
app/src/androidTest/java/testutils/RecyclerViewMatcher.java
@@ -7,13 +7,12 @@
7
import androidx.recyclerview.widget.RecyclerView;
8
import androidx.test.espresso.matcher.BoundedMatcher;
9
10
-import org.checkerframework.checker.nullness.qual.NonNull;
11
import org.hamcrest.Description;
12
import org.hamcrest.Matcher;
13
14
public class RecyclerViewMatcher {
15
@androidx.annotation.NonNull
16
- public static Matcher<View> atPosition(final int position, @NonNull final Matcher<View> itemMatcher) {
+ public static Matcher<View> atPosition(final int position, final Matcher<View> itemMatcher) {
17
checkNotNull(itemMatcher);
18
return new BoundedMatcher<View, RecyclerView>(RecyclerView.class) {
19
@Override
0 commit comments