X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserAndroid.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2Fasynctasks%2FGetUrlSize.java;h=f85952e270a6dfe247dd6167f6d71c029934d54b;hp=46c3a039f4ad4a578e43fb94a7509f4c819426d6;hb=d4f39c36beb5e6c3568a1e075274ad66defd8e8e;hpb=f825cc15f0383acce10bb16443e027edb869a11e diff --git a/app/src/main/java/com/stoutner/privacybrowser/asynctasks/GetUrlSize.java b/app/src/main/java/com/stoutner/privacybrowser/asynctasks/GetUrlSize.java index 46c3a039..f85952e2 100644 --- a/app/src/main/java/com/stoutner/privacybrowser/asynctasks/GetUrlSize.java +++ b/app/src/main/java/com/stoutner/privacybrowser/asynctasks/GetUrlSize.java @@ -1,5 +1,5 @@ /* - * Copyright © 2020 Soren Stoutner . + * Copyright © 2020-2021 Soren Stoutner . * * This file is part of Privacy Browser . * @@ -37,12 +37,12 @@ import java.text.NumberFormat; public class GetUrlSize extends AsyncTask { // Define weak references for the calling context and alert dialog. - private WeakReference contextWeakReference; - private WeakReference alertDialogWeakReference; + private final WeakReference contextWeakReference; + private final WeakReference alertDialogWeakReference; // Define the class variables. - private String userAgent; - private boolean cookiesEnabled; + private final String userAgent; + private final boolean cookiesEnabled; // The public constructor. public GetUrlSize(Context context, AlertDialog alertDialog, String userAgent, boolean cookiesEnabled) {