Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1d71751f authored by Adam Koch's avatar Adam Koch Committed by Android Git Automerger
Browse files

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

* commit 'bbed0513':
  Contacts Provider Training - fix minor code snippet typos.
parents b83e8b69 bbed0513
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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>