]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/java/com/stoutner/privacybrowser/adapters/GuidePagerAdapter.java
Save and restore the app state. https://redmine.stoutner.com/issues/461
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / adapters / GuidePagerAdapter.java
index fccf188316fc88efae4251b09cfae69a88440cf4..26d376c2b5cea915ab58faac48416385dc516b03 100644 (file)
@@ -30,14 +30,15 @@ import com.stoutner.privacybrowser.R;
 import com.stoutner.privacybrowser.fragments.GuideTabFragment;
 
 public class GuidePagerAdapter extends FragmentPagerAdapter {
-    // Define the class context variable.
+    // Define the class variables.
     private Context context;
 
+    // The default constructor.
     public GuidePagerAdapter(FragmentManager fragmentManager, Context context) {
         // 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;
     }