From 4510705b2862dba20e4ccee34641029f699859ac Mon Sep 17 00:00:00 2001 From: Scott Main Date: Mon, 26 Sep 2011 21:52:05 -0700 Subject: [PATCH] docs: fix markup in javadocs Change-Id: I1f9be842f40c813134fbcd5fdbbead5647fb72e5 --- core/java/android/provider/ContactsContract.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/core/java/android/provider/ContactsContract.java b/core/java/android/provider/ContactsContract.java index ca1d0d9e371db..fb119b343abde 100644 --- a/core/java/android/provider/ContactsContract.java +++ b/core/java/android/provider/ContactsContract.java @@ -2983,8 +2983,9 @@ public final class ContactsContract { * long streamItemId = ContentUris.parseId(streamItemUri); * * - *
Via the {@link StreamItems#CONTENT_URI} URI:
+ *
Via {@link StreamItems#CONTENT_URI}:
*
+ *
      * ContentValues values = new ContentValues();
      * values.put(StreamItems.RAW_CONTACT_ID, rawContactId);
      * values.put(StreamItems.TEXT, "Breakfasted at Tiffanys");
@@ -2992,6 +2993,7 @@ public final class ContactsContract {
      * values.put(StreamItems.COMMENTS, "3 people reshared this");
      * Uri streamItemUri = getContentResolver().insert(StreamItems.CONTENT_URI, values);
      * long streamItemId = ContentUris.parseId(streamItemUri);
+     *
*
* * @@ -3012,7 +3014,7 @@ public final class ContactsContract { * StreamItems.StreamItemPhotos.CONTENT_DIRECTORY), values); * * - *
Via {@link ContactsContract.StreamItems#CONTENT_PHOTO_URI}
+ *
Via {@link ContactsContract.StreamItems#CONTENT_PHOTO_URI}:
*
*
      * values.clear();
@@ -3021,7 +3023,7 @@ public final class ContactsContract {
      * values.put(StreamItemPhotos.PHOTO, photoData);
      * getContentResolver().insert(StreamItems.CONTENT_PHOTO_URI, values);
      * 
- * Note that this latter form allows the insertion of a stream item and its + *

Note that this latter form allows the insertion of a stream item and its * photos in a single transaction, by using {@link ContentProviderOperation} with * back references to populate the stream item ID in the {@link ContentValues}. *