mirror of
				https://github.com/TeamNewPipe/NewPipe
				synced 2025-10-30 23:03:00 +00:00 
			
		
		
		
	Fix wrong NonNull
This commit is contained in:
		| @@ -38,8 +38,6 @@ import java.util.function.DoubleConsumer; | |||||||
| import java.util.function.DoubleFunction; | import java.util.function.DoubleFunction; | ||||||
| import java.util.function.DoubleSupplier; | import java.util.function.DoubleSupplier; | ||||||
|  |  | ||||||
| import javax.annotation.Nonnull; |  | ||||||
|  |  | ||||||
| import icepick.Icepick; | import icepick.Icepick; | ||||||
| import icepick.State; | import icepick.State; | ||||||
|  |  | ||||||
| @@ -498,7 +496,7 @@ public class PlaybackParameterDialog extends DialogFragment { | |||||||
|     ) { |     ) { | ||||||
|         return new SimpleOnSeekBarChangeListener() { |         return new SimpleOnSeekBarChangeListener() { | ||||||
|             @Override |             @Override | ||||||
|             public void onProgressChanged(@Nonnull final SeekBar seekBar, |             public void onProgressChanged(@NonNull final SeekBar seekBar, | ||||||
|                                           final int progress, |                                           final int progress, | ||||||
|                                           final boolean fromUser) { |                                           final boolean fromUser) { | ||||||
|                 if (fromUser) { // ensure that the user triggered the change |                 if (fromUser) { // ensure that the user triggered the change | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Stypox
					Stypox