Skip to content

Commit 173b6c3

Browse files
committed
Fix wrong NonNull
1 parent 7646c68 commit 173b6c3

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

app/src/main/java/org/schabi/newpipe/player/helper/PlaybackParameterDialog.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@
3838
import java.util.function.DoubleFunction;
3939
import java.util.function.DoubleSupplier;
4040

41-
import javax.annotation.Nonnull;
42-
4341
import icepick.Icepick;
4442
import icepick.State;
4543

@@ -498,7 +496,7 @@ private SeekBar.OnSeekBarChangeListener getTempoOrPitchSeekbarChangeListener(
498496
) {
499497
return new SimpleOnSeekBarChangeListener() {
500498
@Override
501-
public void onProgressChanged(@Nonnull final SeekBar seekBar,
499+
public void onProgressChanged(@NonNull final SeekBar seekBar,
502500
final int progress,
503501
final boolean fromUser) {
504502
if (fromUser) { // ensure that the user triggered the change

0 commit comments

Comments
 (0)