summaryrefslogtreecommitdiff
path: root/app/src/main/java/de/danoeh/antennapod/activity
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2020-02-02 17:52:21 +0100
committerByteHamster <info@bytehamster.com>2020-02-02 18:42:06 +0100
commitb656cb91a2a9b6aa6395b648195e4eb49e07f8da (patch)
tree688d2f9057e1afeba60823f1811f86f2db952276 /app/src/main/java/de/danoeh/antennapod/activity
parent8f08bd1f6da579658fba565a736a2823f55ca5d3 (diff)
downloadAntennaPod-b656cb91a2a9b6aa6395b648195e4eb49e07f8da.zip
Enforce MethodParamPad
Diffstat (limited to 'app/src/main/java/de/danoeh/antennapod/activity')
-rw-r--r--app/src/main/java/de/danoeh/antennapod/activity/MediaplayerActivity.java2
-rw-r--r--app/src/main/java/de/danoeh/antennapod/activity/VideoplayerActivity.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/src/main/java/de/danoeh/antennapod/activity/MediaplayerActivity.java b/app/src/main/java/de/danoeh/antennapod/activity/MediaplayerActivity.java
index 021ff774d..a5ae5e58c 100644
--- a/app/src/main/java/de/danoeh/antennapod/activity/MediaplayerActivity.java
+++ b/app/src/main/java/de/danoeh/antennapod/activity/MediaplayerActivity.java
@@ -770,7 +770,7 @@ public abstract class MediaplayerActivity extends CastEnabledActivity implements
private float prog;
@Override
- public void onProgressChanged (SeekBar seekBar,int progress, boolean fromUser) {
+ public void onProgressChanged(SeekBar seekBar,int progress, boolean fromUser) {
if (controller == null || txtvLength == null) {
return;
}
diff --git a/app/src/main/java/de/danoeh/antennapod/activity/VideoplayerActivity.java b/app/src/main/java/de/danoeh/antennapod/activity/VideoplayerActivity.java
index 0c6ae2645..8fb7aa73f 100644
--- a/app/src/main/java/de/danoeh/antennapod/activity/VideoplayerActivity.java
+++ b/app/src/main/java/de/danoeh/antennapod/activity/VideoplayerActivity.java
@@ -98,7 +98,7 @@ public class VideoplayerActivity extends MediaplayerActivity {
}
@Override
- public void onUserLeaveHint () {
+ public void onUserLeaveHint() {
if (!PictureInPictureUtil.isInPictureInPictureMode(this) && UserPreferences.getVideoBackgroundBehavior()
== UserPreferences.VideoBackgroundBehavior.PICTURE_IN_PICTURE) {
compatEnterPictureInPicture();