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

Commit 0f7d0afa authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Make BitmapDrawable#getTint[Mode] private"

parents e2e92843 313c0367
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -696,18 +696,18 @@ public class BitmapDrawable extends Drawable {
    }

    /**
     * @hide only needed by a hack within ProgressBar
     * No longer needed by ProgressBar, but still here due to UnsupportedAppUsage.
     */
    @UnsupportedAppUsage
    public ColorStateList getTint() {
    private ColorStateList getTint() {
        return mBitmapState.mTint;
    }

    /**
     * @hide only needed by a hack within ProgressBar
     * No longer needed by ProgressBar, but still here due to UnsupportedAppUsage.
     */
    @UnsupportedAppUsage
    public Mode getTintMode() {
    private Mode getTintMode() {
        return BlendMode.blendModeToPorterDuffMode(mBitmapState.mBlendMode);
    }