Browse Source

pmd:ImmutableField - Immutable Field (#282)

Mohamed Ezzat 9 năm trước cách đây
mục cha
commit
ff6eefe1c4

+ 2 - 2
app/src/main/java/eu/kanade/tachiyomi/data/source/online/english/Batoto.java

@@ -54,8 +54,8 @@ public class Batoto extends LoginSource {
 
     public static final Pattern staffNotice = Pattern.compile("=+Batoto Staff Notice=+([^=]+)==+", Pattern.CASE_INSENSITIVE);
 
-    private Pattern datePattern;
-    private Map<String, Integer> dateFields;
+    private final Pattern datePattern;
+    private final Map<String, Integer> dateFields;
 
     public Batoto(Context context) {
         super(context);

+ 1 - 1
app/src/main/java/eu/kanade/tachiyomi/ui/base/activity/BaseRxActivity.java

@@ -22,7 +22,7 @@ public abstract class BaseRxActivity<P extends Presenter> extends BaseActivity i
 
     private static final String PRESENTER_STATE_KEY = "presenter_state";
 
-    private PresenterLifecycleDelegate<P> presenterDelegate =
+    private final PresenterLifecycleDelegate<P> presenterDelegate =
             new PresenterLifecycleDelegate<>(ReflectionPresenterFactory.<P>fromViewClass(getClass()));
 
     /**

+ 1 - 1
app/src/main/java/eu/kanade/tachiyomi/ui/base/adapter/SmartFragmentStatePagerAdapter.java

@@ -11,7 +11,7 @@ import java.util.List;
 
 public abstract class SmartFragmentStatePagerAdapter extends FragmentStatePagerAdapter {
     // Sparse array to keep track of registered fragments in memory
-    private SparseArray<Fragment> registeredFragments = new SparseArray<Fragment>();
+    private final SparseArray<Fragment> registeredFragments = new SparseArray<Fragment>();
 
     public SmartFragmentStatePagerAdapter(FragmentManager fragmentManager) {
         super(fragmentManager);

+ 1 - 1
app/src/main/java/eu/kanade/tachiyomi/ui/base/decoration/DividerItemDecoration.java

@@ -12,7 +12,7 @@ import android.view.View;
 
 public class DividerItemDecoration extends RecyclerView.ItemDecoration {
 
-    private Drawable mDivider;
+    private final Drawable mDivider;
 
     public DividerItemDecoration(Context context, AttributeSet attrs) {
         final TypedArray a = context.obtainStyledAttributes(attrs, new int [] { android.R.attr.listDivider });

+ 1 - 1
app/src/main/java/eu/kanade/tachiyomi/ui/base/fragment/BaseRxFragment.java

@@ -20,7 +20,7 @@ import nucleus.view.ViewWithPresenter;
 public abstract class BaseRxFragment<P extends Presenter> extends BaseFragment implements ViewWithPresenter<P> {
 
     private static final String PRESENTER_STATE_KEY = "presenter_state";
-    private PresenterLifecycleDelegate<P> presenterDelegate =
+    private final PresenterLifecycleDelegate<P> presenterDelegate =
             new PresenterLifecycleDelegate<>(ReflectionPresenterFactory.<P>fromViewClass(getClass()));
 
     /**

+ 4 - 4
app/src/main/java/eu/kanade/tachiyomi/widget/EndlessGridScrollListener.java

@@ -9,12 +9,12 @@ public class EndlessGridScrollListener extends RecyclerView.OnScrollListener {
 
     private int previousTotal = 0; // The total number of items in the dataset after the last load
     private boolean loading = true; // True if we are still waiting for the last set of data to load.
-    private int visibleThreshold = 5; // The minimum amount of items to have below your current scroll position before loading more.
+    private static final int VISIBLE_THRESHOLD = 5; // The minimum amount of items to have below your current scroll position before loading more.
     private int firstVisibleItem, visibleItemCount, totalItemCount;
 
-    private GridLayoutManager layoutManager;
+    private final GridLayoutManager layoutManager;
 
-    private Action0 requestNext;
+    private final Action0 requestNext;
 
     public EndlessGridScrollListener(GridLayoutManager layoutManager, Action0 requestNext) {
         this.layoutManager = layoutManager;
@@ -39,7 +39,7 @@ public class EndlessGridScrollListener extends RecyclerView.OnScrollListener {
             previousTotal = totalItemCount;
         }
         if (!loading && (totalItemCount - visibleItemCount)
-                <= (firstVisibleItem + visibleThreshold)) {
+                <= (firstVisibleItem + VISIBLE_THRESHOLD)) {
             // End has been reached
             requestNext.call();
             loading = true;

+ 3 - 3
app/src/main/java/eu/kanade/tachiyomi/widget/EndlessListScrollListener.java

@@ -9,12 +9,12 @@ public class EndlessListScrollListener extends RecyclerView.OnScrollListener {
 
     private int previousTotal = 0; // The total number of items in the dataset after the last load
     private boolean loading = true; // True if we are still waiting for the last set of data to load.
-    private int visibleThreshold = 5; // The minimum amount of items to have below your current scroll position before loading more.
+    private static final int VISIBLE_THRESHOLD = 5; // The minimum amount of items to have below your current scroll position before loading more.
     private int firstVisibleItem, visibleItemCount, totalItemCount;
 
     private LinearLayoutManager layoutManager;
 
-    private Action0 requestNext;
+    private final Action0 requestNext;
 
     public EndlessListScrollListener(LinearLayoutManager layoutManager, Action0 requestNext) {
         this.layoutManager = layoutManager;
@@ -39,7 +39,7 @@ public class EndlessListScrollListener extends RecyclerView.OnScrollListener {
             previousTotal = totalItemCount;
         }
         if (!loading && (totalItemCount - visibleItemCount)
-                <= (firstVisibleItem + visibleThreshold)) {
+                <= (firstVisibleItem + VISIBLE_THRESHOLD)) {
             // End has been reached
             requestNext.call();
             loading = true;

+ 3 - 3
app/src/main/java/eu/kanade/tachiyomi/widget/EndlessScrollListener.java

@@ -7,13 +7,13 @@ import rx.functions.Action0;
 public class EndlessScrollListener implements AbsListView.OnScrollListener {
     // The minimum amount of items to have below your current scroll position
     // before loading more.
-    private int visibleThreshold = 5;
+    private static final int VISIBLE_THRESHOLD = 5;
     // The total number of items in the dataset after the last load
     private int previousTotalItemCount = 0;
     // True if we are still waiting for the last set of data to load.
     private boolean loading = true;
 
-    private Action0 requestNext;
+    private final Action0 requestNext;
 
     public EndlessScrollListener(Action0 requestNext) {
         this.requestNext = requestNext;
@@ -47,7 +47,7 @@ public class EndlessScrollListener implements AbsListView.OnScrollListener {
         // If it isn’t currently loading, we check to see if we have breached
         // the visibleThreshold and need to reload more data.
         // If we do need to reload some more data, we execute onLoadMore to fetch the data.
-        if (!loading && (totalItemCount - visibleItemCount)<=(firstVisibleItem + visibleThreshold)) {
+        if (!loading && (totalItemCount - visibleItemCount)<=(firstVisibleItem + VISIBLE_THRESHOLD)) {
             requestNext.call();
             loading = true;
         }