]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/java/com/stoutner/privacybrowser/asynctasks/GetLogcat.java
Redesign file access to work with the scoped storage. https://redmine.stoutner.com...
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / asynctasks / GetLogcat.java
index 4722dbfcbb80fadcf5b19cdb0ed236da7822f4c5..8abd75acd0c30339e1cec3d3d3e00574ab8837e4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2020 Soren Stoutner <soren@stoutner.com>.
+ * Copyright © 2020-2021 Soren Stoutner <soren@stoutner.com>.
  *
  * This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
  *
@@ -37,7 +37,7 @@ import java.lang.ref.WeakReference;
 public class GetLogcat extends AsyncTask<Void, Void, String> {
     // Define the class variables.
     private final WeakReference<Activity> activityWeakReference;
-    private int scrollViewYPositionInt;
+    private final int scrollViewYPositionInt;
 
     // The public constructor.
     public GetLogcat(Activity activity, int scrollViewYPositionInt) {