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

Commit cda010d5 authored by Michael Kolb's avatar Michael Kolb Committed by Android Git Automerger
Browse files

am 3124e6f9: Merge "Remove debug log messages" into ics-mr1

* commit '3124e6f9':
  Remove debug log messages
parents 96f660f4 3124e6f9
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;