mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-21 17:29:32 +01:00
Use Log.tag where appropriate.
This commit is contained in:
committed by
Alex Hart
parent
2144dc3b67
commit
b053fbc4a7
@@ -38,7 +38,7 @@ import java.util.Locale;
|
||||
|
||||
public final class ContactUtil {
|
||||
|
||||
private static final String TAG = ContactUtil.class.getSimpleName();
|
||||
private static final String TAG = Log.tag(ContactUtil.class);
|
||||
|
||||
public static long getContactIdFromUri(@NonNull Uri uri) {
|
||||
try {
|
||||
|
||||
@@ -38,7 +38,7 @@ import static org.thoughtcrime.securesms.contactshare.Contact.Avatar;
|
||||
|
||||
public class SharedContactRepository {
|
||||
|
||||
private static final String TAG = SharedContactRepository.class.getSimpleName();
|
||||
private static final String TAG = Log.tag(SharedContactRepository.class);
|
||||
|
||||
private final Context context;
|
||||
private final Executor executor;
|
||||
|
||||
@@ -19,7 +19,7 @@ public final class VCardUtil {
|
||||
|
||||
private VCardUtil(){}
|
||||
|
||||
private static final String TAG = VCardUtil.class.getSimpleName();
|
||||
private static final String TAG = Log.tag(VCardUtil.class);
|
||||
|
||||
public static List<Contact> parseContacts(@NonNull String vCardData) {
|
||||
List<VCard> vContacts = Ezvcard.parse(vCardData).all();
|
||||
|
||||
Reference in New Issue
Block a user