Fix typos caused by gerrit's inline editor.

Change-Id: Ie142f5c6b418ac775cc167787f8e372d5354b91a
This commit is contained in:
Tony Wickham
2015-08-28 16:33:11 -07:00
parent 415146fcf3
commit 1ea392f0bc
@@ -846,9 +846,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;
}
}