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

Commit e4672697 authored by Danny Baumann's avatar Danny Baumann Committed by Gerrit Code Review
Browse files

Merge "SystemUI: Add missing recycle calls (fix lint warning)" into cm-10.2

parents a9304150 ac7869cb
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -61,6 +61,7 @@ public class RecentsScrollViewPerformanceHelper {
        mFadingEdgeLength = a.getDimensionPixelSize(android.R.styleable.View_fadingEdgeLength,
                ViewConfiguration.get(context).getScaledFadingEdgeLength());
        mIsVertical = isVertical;
        a.recycle();
    }

    public void onAttachedToWindowCallback(
+1 −0
Original line number Diff line number Diff line
@@ -44,6 +44,7 @@ public class QuickSettingsContainerView extends FrameLayout {
        super(context, attrs);
        TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.QuickSettingsContainer, 0, 0);
        mSingleRow = a.getBoolean(R.styleable.QuickSettingsContainer_singleRow, false);
        a.recycle();
        updateResources();
    }

+2 −0
Original line number Diff line number Diff line
@@ -79,6 +79,8 @@ public class DeadZone extends View {
                    + (mVertical ? " vertical" : " horizontal"));

        setFlashOnTouchCapture(context.getResources().getBoolean(R.bool.config_dead_zone_flash));

        a.recycle();
    }

    static float lerp(float a, float b, float f) {