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

Commit 250661e1 authored by Sunny Goyal's avatar Sunny Goyal
Browse files

Fixing syntax error due to java-version changes

Bug: 284032965
Test: Presubmit
Change-Id: I2ee30dfa5e4170272b5353f270a69b38750a0bd5
parent 23085999
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -187,10 +187,10 @@ public class IconCache extends BaseIconCache {
                getTitleAndIcon(info, false);
                return info;
            };
        } else if (info instanceof PackageItemInfo pii) {
        } else if (info instanceof PackageItemInfo) {
            task = () -> {
                getTitleAndIconForApp(pii, false);
                return pii;
                getTitleAndIconForApp((PackageItemInfo) info, false);
                return info;
            };
        } else {
            Log.i(TAG, "Icon update not supported for "