OSDN Git Service

Fixed formatting and removed logging of previous commit
authorDaniel Lehmann <lehmannd@google.com>
Tue, 9 Mar 2010 01:14:16 +0000 (17:14 -0800)
committerDaniel Lehmann <lehmannd@google.com>
Tue, 9 Mar 2010 01:14:16 +0000 (17:14 -0800)
Bug:2448065

Change-Id: I6158b61fd128ff295e7c0aa730f15fb7627a38b4

src/com/android/contacts/ImportVCardActivity.java

index 9b2ca2c..30b6cbf 100644 (file)
@@ -282,12 +282,10 @@ public class ImportVCardActivity extends Activity {
                             Log.v("importVCardActivity", "Prepare to review the imported contact");
 
                             // get contact_id of this raw_contact
-                            Log.v("importVCardActivity", "RawContactUri: " + createdUri);
                             final long rawContactId = ContentUris.parseId(createdUri);
-                            Log.v("importVCardActivity", "RawContactId: " + rawContactId);
                             Uri contactUri = RawContacts.getContactLookupUri(getContentResolver(),
-                                    ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId));
-                            Log.v("importVCardActivity", "Contact Uri: " + contactUri);
+                                    ContentUris.withAppendedId(RawContacts.CONTENT_URI,
+                                            rawContactId));
 
                             Intent viewIntent = new Intent(Intent.ACTION_VIEW, contactUri);
                             startActivity(viewIntent);