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

Commit b6d8a843 authored by George Mount's avatar George Mount Committed by Android (Google) Code Review
Browse files

Merge "Fix NPE in getForegroundTintList"

parents 8d1db149 db227415
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -16918,7 +16918,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
    @Nullable
    public ColorStateList getForegroundTintList() {
        return mForegroundInfo != null && mForegroundInfo.mTintInfo != null
                ? mBackgroundTint.mTintList : null;
                ? mForegroundInfo.mTintInfo.mTintList : null;
    }
    /**