Skip to content

Commit 8d79634

Browse files
committed
NEVER use dynamic tag names
Signed-off-by: Alex Saveau <[email protected]>
1 parent e14170d commit 8d79634

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
* contained in the children of the given Firebase location
5252
*/
5353
public abstract class FirebaseListAdapter<T> extends BaseAdapter {
54-
private static final String TAG = FirebaseListAdapter.class.getSimpleName();
54+
private static final String TAG = "FirebaseListAdapter";
5555

5656
private FirebaseArray mSnapshots;
5757
private final Class<T> mModelClass;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
*/
7474
public abstract class FirebaseRecyclerAdapter<T, VH extends RecyclerView.ViewHolder>
7575
extends RecyclerView.Adapter<VH> {
76-
private static final String TAG = FirebaseRecyclerAdapter.class.getSimpleName();
76+
private static final String TAG = "FirebaseRecyclerAdapter";
7777

7878
private FirebaseArray mSnapshots;
7979
private Class<T> mModelClass;

0 commit comments

Comments
 (0)