Skip to content

Commit dac47d9

Browse files
TobiGrlitetex
authored andcommitted
Replace NotNull annotation with NonNull annotation
1 parent 83a3d11 commit dac47d9

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

app/src/main/java/org/schabi/newpipe/player/Player.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,6 @@
136136
import com.squareup.picasso.Picasso;
137137
import com.squareup.picasso.Target;
138138

139-
import org.jetbrains.annotations.NotNull;
140139
import org.schabi.newpipe.DownloaderImpl;
141140
import org.schabi.newpipe.MainActivity;
142141
import org.schabi.newpipe.R;
@@ -626,7 +625,7 @@ public void onAnimationEnd() {
626625
}
627626

628627
@Override
629-
public Boolean shouldFastForward(@NotNull final DisplayPortion portion) {
628+
public Boolean shouldFastForward(@NonNull final DisplayPortion portion) {
630629
// Null indicates an invalid area or condition e.g. the middle portion
631630
// or video start or end was reached during double tap seeking
632631
if (invalidSeekConditions()) {

0 commit comments

Comments
 (0)