am bbed0513: Contacts Provider Training - fix minor code snippet typos.

* commit 'bbed0513abb1d98733f0eed5399f4cb195fda55f':
  Contacts Provider Training - fix minor code snippet typos.
This commit is contained in:
Adam Koch
2013-05-01 11:52:26 -07:00
committed by Android Git Automerger

View File

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