]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/java/com/stoutner/privacybrowser/activities/AboutActivity.java
Convert a number of files to Kotlin. https://redmine.stoutner.com/issues/641
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / activities / AboutActivity.java
index 0ff3f8250ce3e64f6e112384c72aac459203cb8b..7d0228fb5a76ded69af525043f8f4d33796da62a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2016-2020 Soren Stoutner <soren@stoutner.com>.
+ * Copyright © 2016-2021 Soren Stoutner <soren@stoutner.com>.
  *
  * This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
  *
@@ -101,6 +101,9 @@ public class AboutActivity extends AppCompatActivity implements SaveDialog.SaveL
         // Store the blocklist versions.
         String[] blocklistVersions = launchingIntent.getStringArrayExtra("blocklist_versions");
 
+        // Remove the incorrect lint warning below that the blocklist versions might be null.
+        assert blocklistVersions != null;
+
         // Set the content view.
         setContentView(R.layout.about_coordinatorlayout);