diff options
author | cyBerta <cyberta@riseup.net> | 2022-07-18 21:34:59 +0200 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2022-07-18 21:44:51 +0200 |
commit | 12797d89623adb34425cea6cb7de1057083d1cf7 (patch) | |
tree | ff51985da090cb3b401a1c81c2b5d8d3ed57f4c0 /app/src/notFatweb/java | |
parent | 8da92b90abaa39c1c66e305c61907eadb0ec1269 (diff) |
add missing empty DownloadServiceCommand method for non-web-downloaded apks
Diffstat (limited to 'app/src/notFatweb/java')
-rw-r--r-- | app/src/notFatweb/java/se/leap/bitmaskclient/appUpdate/DownloadServiceCommand.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/src/notFatweb/java/se/leap/bitmaskclient/appUpdate/DownloadServiceCommand.java b/app/src/notFatweb/java/se/leap/bitmaskclient/appUpdate/DownloadServiceCommand.java index 157f04fe..02a830ca 100644 --- a/app/src/notFatweb/java/se/leap/bitmaskclient/appUpdate/DownloadServiceCommand.java +++ b/app/src/notFatweb/java/se/leap/bitmaskclient/appUpdate/DownloadServiceCommand.java @@ -1,6 +1,10 @@ package se.leap.bitmaskclient.appUpdate; import android.content.Context; +import android.os.Bundle; + +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; /** * DownloadServiceCommand is only implemented in Fatweb builds @@ -16,4 +20,8 @@ public class DownloadServiceCommand { public static void execute(Context context, String action) { // DO NOTHING. } + + public static void execute(@NonNull Context context, @NonNull String action, @Nullable Bundle parameters) { + // DO NOTHING. + } } |