X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2Fadapters%2FAboutPagerAdapter.java;h=9d4c9191d3a745d880a9cf89506660110615ae55;hb=a9b4d8c78a305c2602ced2058702254ea4e3b79b;hp=d1583c2f03eae490bba4e47a32abc7a69b0f572f;hpb=81179d84ced6b43360d42a4b44eb8fb329532ff4;p=PrivacyBrowserAndroid.git diff --git a/app/src/main/java/com/stoutner/privacybrowser/adapters/AboutPagerAdapter.java b/app/src/main/java/com/stoutner/privacybrowser/adapters/AboutPagerAdapter.java index d1583c2f..9d4c9191 100644 --- a/app/src/main/java/com/stoutner/privacybrowser/adapters/AboutPagerAdapter.java +++ b/app/src/main/java/com/stoutner/privacybrowser/adapters/AboutPagerAdapter.java @@ -1,5 +1,5 @@ /* - * Copyright © 2016-2019 Soren Stoutner . + * Copyright © 2016-2020 Soren Stoutner . * * This file is part of Privacy Browser . * @@ -30,7 +30,7 @@ import com.stoutner.privacybrowser.R; import com.stoutner.privacybrowser.fragments.AboutTabFragment; public class AboutPagerAdapter extends FragmentPagerAdapter { - // Define the class variable to store the blocklist versions. + // Define the class variables. private Context context; private String[] blocklistVersions; @@ -38,10 +38,8 @@ public class AboutPagerAdapter extends FragmentPagerAdapter { // Run the default commands. super(fragmentManager, BEHAVIOR_RESUME_ONLY_CURRENT_FRAGMENT); - // Store the context in a class variable. + // Store the class variables. this.context = context; - - // Store the blocklist versions in a class variable. this.blocklistVersions = blocklistVersions; }