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

Commit 3124e6f9 authored by Michael Kolb's avatar Michael Kolb Committed by Android (Google) Code Review
Browse files

Merge "Remove debug log messages" into ics-mr1

parents e63d67ef e4e5fef7
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -237,7 +237,6 @@ import java.util.ArrayList;
    private void growOrShrink(boolean grow) {
        AbsoluteLayout.LayoutParams lp = (AbsoluteLayout.LayoutParams) getLayoutParams();
        if (grow) {
            Log.i("webtextview", "grow");
            lp.x -= mRingInset;
            lp.y -= mRingInset;
            lp.width += 2 * mRingInset;
@@ -245,7 +244,6 @@ import java.util.ArrayList;
            setPadding(getPaddingLeft() + mRingInset, getPaddingTop() + mRingInset,
                    getPaddingRight() + mRingInset, getPaddingBottom() + mRingInset);
        } else {
            Log.i("webtextview", "shrink");
            lp.x += mRingInset;
            lp.y += mRingInset;
            lp.width -= 2 * mRingInset;