1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-24 02:12:15 -05:00

Removed some logging (too verbose)

This commit is contained in:
Bao-Long Nguyen-Trong 2009-09-15 05:20:12 +00:00
parent ac6358ec5c
commit d61c7a192c

View File

@ -150,9 +150,7 @@ public class Address {
public String toEncodedString() { public String toEncodedString() {
if (mPersonal != null) { if (mPersonal != null) {
String s = EncoderUtil.encodeAddressDisplayName(mPersonal) + " <" + mAddress + ">"; return EncoderUtil.encodeAddressDisplayName(mPersonal) + " <" + mAddress + ">";
Log.v(Email.LOG_TAG, s);
return s;
} else { } else {
return mAddress; return mAddress;
} }