Fix typos caused by gerrit's inline editor.

Change-Id: Ie142f5c6b418ac775cc167787f8e372d5354b91a
(cherry picked from commit 1ea392f0bc)
This commit is contained in:
Tony Wickham
2015-08-28 16:33:11 -07:00
parent 388a657419
commit b894aa1f67
@@ -847,9 +847,9 @@ public class WallpaperPickerActivity extends WallpaperCropActivity {
int indexOfExistingTile = 0;
for (; indexOfExistingTile < mWallpapersView.getChildCount(); indexOfExistingTile++) {
FrameLayout thumbnail = (FrameLayout) mWallpapersView.getChildAt(indexOfExistingTile);
Object tag = thumbNail.getTag();
Object tag = thumbnail.getTag();
if (tag instanceof UriWallpaperInfo && ((UriWallpaperInfo) tag).mUri.equals(uri)) {
existingImageThumbnail = thumbNail;
existingImageThumbnail = thumbnail;
break;
}
}