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

Commit 1ea392f0 authored by Tony Wickham's avatar Tony Wickham
Browse files

Fix typos caused by gerrit's inline editor.

Change-Id: Ie142f5c6b418ac775cc167787f8e372d5354b91a
parent 415146fc
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
            }
        }