am 4f221669: am 1d71751f: am bbed0513: Contacts Provider Training - fix minor code snippet typos.

* commit '4f2216691a3df241977f39102b7eafc68556f477':
  Contacts Provider Training - fix minor code snippet typos.
This commit is contained in:
Adam Koch
2013-05-01 13:14:49 -07:00
committed by Android Git Automerger

View File

@@ -169,8 +169,8 @@ trainingnavtop=true
// Gets a content URI for the contact // Gets a content URI for the contact
mContactUri = mContactUri =
Contacts.getLookupUri( Contacts.getLookupUri(
Cursor.getLong(mIdColumn), mCursor.getLong(mIdColumn),
Cursor.getString(mLookupKeyColumn) mCursor.getString(mLookupKeyColumn)
); );
mBadge.assignContactUri(mContactUri); mBadge.assignContactUri(mContactUri);
</pre> </pre>
@@ -221,7 +221,7 @@ trainingnavtop=true
* Assuming the current Cursor position is the contact you want, * Assuming the current Cursor position is the contact you want,
* gets the thumbnail ID * gets the thumbnail ID
*/ */
mThumbnailUri = Cursor.getString(mThumbnailColumn); mThumbnailUri = mCursor.getString(mThumbnailColumn);
... ...
</pre> </pre>
<p> <p>