mirror of
https://github.com/TeamNewPipe/NewPipe/
synced 2025-01-31 19:14:53 +01:00
Removed java.util.Objects calls
This commit is contained in:
parent
fbb5c8cdd6
commit
45408caf33
@ -112,7 +112,6 @@ import java.util.Collection;
|
|||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.LinkedList;
|
import java.util.LinkedList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Objects;
|
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
import icepick.State;
|
import icepick.State;
|
||||||
@ -1177,7 +1176,7 @@ public class VideoDetailFragment
|
|||||||
|
|
||||||
// Video view can have elements visible from popup,
|
// Video view can have elements visible from popup,
|
||||||
// We hide it here but once it ready the view will be shown in handleIntent()
|
// We hide it here but once it ready the view will be shown in handleIntent()
|
||||||
Objects.requireNonNull(playerService.getView()).setVisibility(View.GONE);
|
playerService.getView().setVisibility(View.GONE);
|
||||||
addVideoPlayerView();
|
addVideoPlayerView();
|
||||||
|
|
||||||
final Intent playerIntent = NavigationHelper
|
final Intent playerIntent = NavigationHelper
|
||||||
@ -1351,7 +1350,7 @@ public class VideoDetailFragment
|
|||||||
final int height;
|
final int height;
|
||||||
if (player != null && player.isFullscreen()) {
|
if (player != null && player.isFullscreen()) {
|
||||||
height = isInMultiWindow()
|
height = isInMultiWindow()
|
||||||
? Objects.requireNonNull(getView()).getHeight()
|
? requireView().getHeight()
|
||||||
: activity.getWindow().getDecorView().getHeight();
|
: activity.getWindow().getDecorView().getHeight();
|
||||||
} else {
|
} else {
|
||||||
height = isPortrait
|
height = isPortrait
|
||||||
|
Loading…
x
Reference in New Issue
Block a user