From bc0eef8231e6d35eb36e5ed33291e37c08053b80 Mon Sep 17 00:00:00 2001 From: cyBerta Date: Wed, 30 Dec 2020 01:00:10 +0100 Subject: fix fatweb flavored builds --- .../appUpdate/DownloadServiceCommand.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'app/src/fatweb/java/se.leap.bitmaskclient/appUpdate/DownloadServiceCommand.java') diff --git a/app/src/fatweb/java/se.leap.bitmaskclient/appUpdate/DownloadServiceCommand.java b/app/src/fatweb/java/se.leap.bitmaskclient/appUpdate/DownloadServiceCommand.java index c4e809f2..4e0d9079 100644 --- a/app/src/fatweb/java/se.leap.bitmaskclient/appUpdate/DownloadServiceCommand.java +++ b/app/src/fatweb/java/se.leap.bitmaskclient/appUpdate/DownloadServiceCommand.java @@ -20,10 +20,10 @@ import android.content.Context; import android.content.Intent; import android.os.ResultReceiver; -import org.jetbrains.annotations.NotNull; -import org.jetbrains.annotations.Nullable; +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; -import se.leap.bitmaskclient.ProviderAPI; +import se.leap.bitmaskclient.providersetup.ProviderAPI; public class DownloadServiceCommand { @@ -35,11 +35,11 @@ public class DownloadServiceCommand { private String action; private ResultReceiver resultReceiver; - private DownloadServiceCommand(@NotNull Context context, @NotNull String action) { + private DownloadServiceCommand(@NonNull Context context, @NonNull String action) { this(context.getApplicationContext(), action, null); } - private DownloadServiceCommand(@NotNull Context context, @NotNull String action, @Nullable ResultReceiver resultReceiver) { + private DownloadServiceCommand(@NonNull Context context, @NonNull String action, @Nullable ResultReceiver resultReceiver) { super(); this.context = context; this.action = action; -- cgit v1.2.3