We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 329a5dc commit 81b7da9Copy full SHA for 81b7da9
database/src/main/java/com/firebase/ui/database/FirebaseRecyclerAdapter.java
@@ -70,11 +70,10 @@
70
* @param <VH> The ViewHolder class that contains the Views in the layout that is shown for each object.
71
*/
72
public abstract class FirebaseRecyclerAdapter<T, VH extends RecyclerView.ViewHolder> extends RecyclerView.Adapter<VH> {
73
-
74
- private Class<T> mModelClass;
75
- private int mModelLayout;
76
- private Class<VH> mViewHolderClass;
77
- private FirebaseArray mSnapshots;
+ Class<T> mModelClass;
+ int mModelLayout;
+ Class<VH> mViewHolderClass;
+ FirebaseArray mSnapshots;
78
79
/**
80
* @param modelClass Firebase will marshall the data at a location into an instance of a class that you provide
0 commit comments