Skip to content

Commit 81e93bf

Browse files
authored
Merge pull request #525 from SUPERCILEX/db-tags
NEVER use dynamic tag names
2 parents 7eac8a0 + 8d79634 commit 81e93bf

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)