Skip to content

Commit 81b7da9

Browse files
authored
Update FirebaseRecyclerAdapter.java
1 parent 329a5dc commit 81b7da9

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

database/src/main/java/com/firebase/ui/database/FirebaseRecyclerAdapter.java

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,10 @@
7070
* @param <VH> The ViewHolder class that contains the Views in the layout that is shown for each object.
7171
*/
7272
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;
73+
Class<T> mModelClass;
74+
int mModelLayout;
75+
Class<VH> mViewHolderClass;
76+
FirebaseArray mSnapshots;
7877

7978
/**
8079
* @param modelClass Firebase will marshall the data at a location into an instance of a class that you provide

0 commit comments

Comments
 (0)